
prefuse.util.force.Integrator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of prefuse-vienna Show documentation
Show all versions of prefuse-vienna Show documentation
Prefuse is a set of software tools for creating rich interactive data visualizations in the Java programming language.
The newest version!
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 jeffrey heer
*/
public interface Integrator {
public void integrate(ForceSimulator sim, long timestep);
} // end of interface Integrator
© 2015 - 2025 Weber Informatics LLC | Privacy Policy