/ Published in: ActionScript 3
Expand |
Embed | Plain Text
// Degrees to Radians radians = degrees * Math.PI / 180 // Radians to Degrees degree = radians * 180 / Math.PI
Comments
Subscribe to comments
You need to login to post a comment.

I think you got the comments backwards ;) Otherwise a good snippet. I always forget those formulas ;)
Thanks for the comment :) I changed it.