Esempio n. 1
0
 // Returns true if the shortest path between the two given angles is a
 // positive (counterclockwise on the unit circle) rotation from the start angle.
 public static bool IsShortestRotationPositive(Angle start, Angle end)
 {
     return(UtilPeriodic.IsShortestRotationPositive(
                start.GetDegrees(), end.GetDegrees(), INTERVAL_UNSIGNED_DEGREES));
 }