Example #1
0
 internal PhysicalObject()
 {
     Forces       = new List <PhysicalVector>();
     Location     = new PhysicalPoint();
     Speed        = new PhysicalVector();
     Acceleration = new PhysicalVector();
     InitializeForces();
 }
Example #2
0
 internal PhysicalVector(PhysicalPoint point)
     : base(point.X, point.Y)
 {
 }