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

Acos() public static method

Calculates the angle whose cosine is the given number.
public static Acos ( float number ) : float
number float A number representing a cosine, where -1 ≤ number ≤ 1.
return float
        public static float Acos(float number)
        {
            return (float)System.Math.Acos(number);
        }