/examples/advanced/physics/physicsShapes/IPhysicsComponent.java

http://mt4j.googlecode.com/ · Java · 10 lines · 8 code · 2 blank · 0 comment · 0 complexity · 3b3fc72a1d9238165f0afa3668248959 MD5 · raw file

  1. package advanced.physics.physicsShapes;
  2. import org.jbox2d.dynamics.Body;
  3. import org.mt4j.util.math.Vector3D;
  4. public interface IPhysicsComponent{
  5. public void setCenterRotation(float angle);
  6. public void setPositionGlobal(Vector3D centerPoint);
  7. public Body getBody();
  8. }