Created
May 31, 2009 17:43
-
-
Save akio0911/120952 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package | |
{ | |
import flash.display.Sprite; | |
public class Test extends Sprite { | |
public function Test(){ | |
log(Math.atan(0.577) * 180 / Math.PI); | |
log(Math.atan2(1, 2) * 180 / Math.PI); | |
log(Math.atan2(-1, -2) * 180 / Math.PI); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment