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

Asin() public static method

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