Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.Netron/3.0.2672.12446/Netron.Diagramming.Core-3.0.2672.12446/Layout/Force/IIntegrator.cs @ 4068

Last change on this file since 4068 was 4068, checked in by swagner, 14 years ago

Sorted usings and removed unused usings in entire solution (#1094)

File size: 367 bytes
Line 
1
2namespace Netron.Diagramming.Core.Layout.Force {
3  /// <summary>
4  /// Interface for numerical integration routines. These routines are used
5  /// to update the position and velocity of items in response to forces
6  /// over a given time step.
7  /// </summary>
8  public interface IIntegrator {
9    void Integrate(ForceSimulator sim, long timestep);
10  }
11}
Note: See TracBrowser for help on using the repository browser.