Examples of followOffsetZ()


Examples of org.nlogo.api.World3D.followOffsetZ()

          (y < world.maxPycor() + 0.5) && (y >= world.minPycor() - 0.5) &&
          (z < w.maxPzcor() + 0.5) && (z >= w.minPzcor() - 0.5)) {
        try {
          agents.add(w.getPatchAt(wrapX(x + w.followOffsetX()),
              wrapY(y + w.followOffsetY()),
              wrapZ(z + w.followOffsetZ())));
        } catch (AgentException e) {
          org.nlogo.util.Exceptions.ignore(e);
        }
      }
      xi += xinc;
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.