00001 //----------------------------------------------------------------------------- 00002 // ISecondDerivative.cs 00003 // (A. Schiffler, 2009) 00004 //----------------------------------------------------------------------------- 00005 00006 using System; 00007 using System.Collections.Generic; 00008 using System.Text; 00009 00010 namespace NewGamePhysics.Mathematics 00011 { 00016 public interface ISecondDerivative 00017 { 00025 VectorN GetValue(double t, VectorN y, VectorN dy); 00026 } 00027 }
1.6.2