Esempio n. 1
0
 public static scAngle FromDegrees(float degrees)
 {
     var rotation = new scAngle();
     rotation.degrees = degrees;
     return rotation;
 }
Esempio n. 2
0
 public static scAngle FromRadians(float radians)
 {
     var rotation = new scAngle();
     rotation.radians = radians;
     return rotation;
 }