igeo
Interface IParticleI

All Known Implementing Classes:
IBoid, IParticle, IParticleAgent, IParticleOnCurve

public interface IParticleI

Class of an implementation of IDynamicObject to have physical attributes of point. It has attributes of position, velocity, acceleration, force, and mass. Position is provided from outside to be linked.


Method Summary
 IParticleI addForce(IVec f)
           
 double mass()
           
 IVec pos()
           
 IVec position()
           
 IParticleI resetForce()
           
 IVec vel()
           
 IVec velocity()
           
 

Method Detail

mass

double mass()

position

IVec position()

pos

IVec pos()

velocity

IVec velocity()

vel

IVec vel()

addForce

IParticleI addForce(IVec f)

resetForce

IParticleI resetForce()