コード例 #1
0
ファイル: Angle.cs プロジェクト: ByteNybbler/NotTheFace
 // Rotates the angle by 180 degrees, effectively reversing its direction.
 public Angle Reverse()
 {
     degrees = UtilPeriodic.Reverse(degrees, INTERVAL_UNSIGNED_DEGREES);
     return(this);
 }