Package com.daven.java4.slimemold

Examples of com.daven.java4.slimemold.Patch.paint()


    //draw patches that stink
    for ( Point k : patchKeys )
    {
      Patch p = patchMatrix.get( k );
      if ( p.getStinkLevel() > 0 )
        p.paint();
    }
    //draw cells
    for ( SimulationObject so : population )
    {
      so.paint();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.