Skip to content

Instantly share code, notes, and snippets.

@akio0911
Created May 31, 2009 17:43
Show Gist options
  • Save akio0911/120952 to your computer and use it in GitHub Desktop.
Save akio0911/120952 to your computer and use it in GitHub Desktop.
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