Beispiel #1
0
 Vector2 GetNewPosition(Vector2 p, Vector2 a, Vector2 v, float t)
 {
     return((a * 0.5f * HMath.Square(t)) + (v * t) + p);
 }