Esempio n. 1
0
 public FixedVector2 RotateGlobalZAxe(int deg)
 {
     return(RotateGlobalZAxe(FixedTrig.Sin(deg), FixedTrig.Cos(deg)));
 }
Esempio n. 2
0
 public FixedVector2 RotateZAxe(int deg, FixedVector2 pivotPoint)
 {
     return(RotateZAxe(FixedTrig.Sin(deg), FixedTrig.Cos(deg), pivotPoint));
 }
Esempio n. 3
0
 public FixedTriangle2D RotateZAxe(int deg, FixedVector2 pivotPoint)
 {
     RotateZAxe(FixedTrig.Sin(deg), FixedTrig.Cos(deg), pivotPoint);
     return(this);
 }
Esempio n. 4
0
 public FixedRectangle2D RotateZAxe(int deg, FixedVector2 pivot)
 {
     return(this.RotateZAxe(FixedTrig.Sin(deg), FixedTrig.Cos(deg), pivot));
 }
Esempio n. 5
0
 public FixedSegment2D RotateZ(int deg, FixedVector2 pivotPoint)
 {
     RotateZ(FixedTrig.Sin(deg), FixedTrig.Cos(deg), pivotPoint);
     return(this);
 }