float Maths.ArcSin(float value)
Calculates the arc-sine, in radians, of the specified value.
To convert an angle in radians to degrees, use Maths.RadiansToDegrees.
Example:
float angle = Maths.ArcSin(0.5);
calculates the arc-sine of 0.5 and places it into variable angle.
See Also: Maths.Sin,
Maths.DegreesToRadians,
|