using System; using System.Collections.Generic; using System.Text; namespace RungeKutta.Integrators { class VerletStep { public static float Integrate(float old, float reallyOld, float timeStep, float secondDerivative) { return 2 * old - reallyOld + secondDerivative * timeStep * timeStep; } } }