/ Published in: Other
Expand |
Embed | Plain Text
public class MathUtils { public static function radiansToDegrees(rad:Number):Number{ return rad *180/Math.PI; } public static function degreesToRadians(deg:Number):Number{ return deg*Math.PI/180; } }
You need to login to post a comment.
