biosim.core.body
Class ReplayBody

java.lang.Object
  extended by biosim.core.body.Body
      extended by biosim.core.body.ReplayBody
All Implemented Interfaces:
java.io.Serializable, sim.engine.Steppable

public class ReplayBody
extends Body

See Also:
Serialized Form

Field Summary
 double size
           
 java.util.ArrayList<double[]> track
           
 int trackID
           
 boolean visible
           
 
Fields inherited from class biosim.core.body.Body
agent, notFinished, sim
 
Constructor Summary
ReplayBody()
           
 
Method Summary
protected  boolean computeNewConfiguration(sim.util.MutableDouble2D newPos, sim.util.MutableDouble2D newDir)
           
 ec.util.MersenneTwisterFast getRandom()
           
 double getSize()
          The size of the body in meters.
 void setSize(double size)
           
 void step(sim.engine.SimState simstate)
           
 
Methods inherited from class biosim.core.body.Body
collisionCheck, finish, getAgent, init, move, setAgent
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

size

public double size

visible

public boolean visible

track

public java.util.ArrayList<double[]> track

trackID

public int trackID
Constructor Detail

ReplayBody

public ReplayBody()
Method Detail

getRandom

public ec.util.MersenneTwisterFast getRandom()
Specified by:
getRandom in class Body

computeNewConfiguration

protected boolean computeNewConfiguration(sim.util.MutableDouble2D newPos,
                                          sim.util.MutableDouble2D newDir)
Specified by:
computeNewConfiguration in class Body

step

public void step(sim.engine.SimState simstate)
Specified by:
step in interface sim.engine.Steppable
Overrides:
step in class Body

setSize

public void setSize(double size)

getSize

public double getSize()
Description copied from class: Body
The size of the body in meters. Used in the default portrayal as the size of the displayed circle. Also used in the default Environment.configSim(...) method to determine if a random location for a body is a valid starting location. For Body classes that use more complicated collision detection you may need to write a custom configSim(...) method.

Specified by:
getSize in class Body