/ 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

You need to login to post a comment.
sidneydekoning on 05/22/09
rad as3 Degrees trig radians deg trionometry
5 people have marked this snippet as a favorite
mrbassman12
toxin20
babyC
arpo
TrentSkunk
// Degrees to Radians radians = degrees * Math.PI / 180 // Radians to Degrees degree = radians * 180 / Math.PI
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.