org.jbox2d.dynamics
Interface Steppable

All Known Implementing Classes:
JointBreaker

public interface Steppable

This interface allows registration within a JBox2d World to be run immediately after the physics step. This is useful if you need to do something every step, but would prefer not to have to manually code your step routine differently, instead letting the engine handle the calling.


Method Summary
 void step(float dt, int iterations)
           
 

Method Detail

step

void step(float dt,
          int iterations)