[Tips] How to convert Degress to Radians :)
function radians(i:int):Number
{
return Math.PI/180*i;
}
Pretty neat formula that you can reuse in absolutely everywhere. Anyway, this is applicable in Actionscript 3.0.
function radians(i:int):Number
{
return Math.PI/180*i;
}
Pretty neat formula that you can reuse in absolutely everywhere. Anyway, this is applicable in Actionscript 3.0.
Yep, absolutely true, thanks for sharing your insights as well
and thanks for dropping by my blog
Please be polite. You can use these HTML tags: STRONG, A, BLOCKQUOTE, CODE
Copyright © 2004–2009. All rights reserved.
RSS Feed. This blog is proudly powered by Wordpress and uses Modern Clix, a theme by Rodrigo Galindez.
nice…
not only this, make sure u also have
. degreeToRadian
. findDistance
. findPointingAngle (mouse direction angle)
my 2 cent.