Staging
v0.5.0
https://repo1.maven.org/maven2/org/prefuse/prefuse
Raw File
Integrator.java
package prefuse.util.force;

/**
 * Interface for numerical integration routines. These routines are used
 * to update the position and velocity of items in response to forces
 * over a given time step.
 *
 * @author <a href="http://jheer.org">jeffrey heer</a>
 */
public interface Integrator {

    public void integrate(ForceSimulator sim, long timestep);
    
} // end of interface Integrator
back to top