Пример #1
0
 public PolarCoordinates(double length, double angle)
 {
     this.Length = length;
     this.Angle  = MathUsefulFuntions.NormalizeAngle(angle);
 }
Пример #2
0
        }                                //Measured in degrees

        public PolarCoordinates()
        {
            this.Length = 0;
            this.Angle  = MathUsefulFuntions.NormalizeAngle(0);
        }