static float asin(float a)
_INSERT_METHOD_SIGNATURE_HERE_
Description:
Returns the arc sine of an angle, in the range of -pi/2 through pi/2.
Note
Example
Draw.writeText("asin of sin PI/2: " + Math.asin(Math.sin(Math.PI/2)));
The example above draws the calculated value of PI / 2 to the screen.