Exemplo n.º 1
0
 /// <summary>
 ///     Compare this Angle to another Angle for equality.  Angle comparisons
 ///     are performed in absolute terms - no "wrapping" occurs.  In other
 ///     words, 360 degress != 0 degrees.
 /// </summary>
 /// <param name="other">other Angle to compare to</param>
 /// <returns>'true' if angles are equal</returns>
 public bool Equals(Angle other)
 {
     return(Degrees.IsApproximatelyEqual(other.Degrees, Precision));
 }