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