예제 #1
0
파일: RigidBody.cs 프로젝트: idafi/heng
 Vector2 GetNewPosition(Vector2 p, Vector2 a, Vector2 v, float t)
 {
     return((a * 0.5f * HMath.Square(t)) + (v * t) + p);
 }