public static scAngle FromDegrees(float degrees) { var rotation = new scAngle(); rotation.degrees = degrees; return rotation; }
public static scAngle FromRadians(float radians) { var rotation = new scAngle(); rotation.radians = radians; return rotation; }