/ Published in: ActionScript 3
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function degrees(radians:Number):Number { return radians * 180/Math.PI; } function radians(degrees:Number):Number { return degrees * Math.PI / 180; }