コード例 #1
0
ファイル: Angle.cs プロジェクト: ByteNybbler/NotTheFace
 // Mirrors an angle across the y-axis of a circle.
 public Angle MirrorHorizontal()
 {
     degrees = UtilPeriodic.MirrorHorizontal(degrees, INTERVAL_UNSIGNED_DEGREES);
     return(this);
 }