Afterglow.Math.Functions.Atan C# (CSharp) Method

Atan() public static method

Calculates the angle whose tangent is the specified number.
public static Atan ( float number ) : float
number float A number representing a tangent.
return float
        public static float Atan(float number)
        {
            return (float)System.Math.Atan(number);
        }