biosim.core.body
Class ReplayBody
java.lang.Object
biosim.core.body.Body
biosim.core.body.ReplayBody
- All Implemented Interfaces:
- java.io.Serializable, sim.engine.Steppable
public class ReplayBody
- extends Body
- See Also:
- Serialized Form
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 java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
size
public double size
visible
public boolean visible
track
public java.util.ArrayList<double[]> track
trackID
public int trackID
ReplayBody
public ReplayBody()
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