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