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