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 @ 2768

Last change on this file since 2768 was 2768, checked in by mkommend, 14 years ago

added solution folders and sources for the netron library (ticket #867)

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