Skip to content

Instantly share code, notes, and snippets.

@akio0911
Created May 31, 2009 17:38
Show Gist options
  • Save akio0911/120948 to your computer and use it in GitHub Desktop.
Save akio0911/120948 to your computer and use it in GitHub Desktop.
package
{
import flash.display.Sprite;
public class Test extends Sprite {
public function Test(){
log(Math.asin(0.5));
log(Math.asin(0.5) * 180 / Math.PI);
log(Math.acos(0.865));
log(Math.acos(0.865) * 180 / Math.PI);
log(Math.acos(Math.cos(30 * Math.PI / 180)) * 180 / Math.PI);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment