namespace Netron.Diagramming.Core.Layout.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. /// public interface IIntegrator { void Integrate(ForceSimulator sim, long timestep); } }