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