LitDev.LDMath.ArcSin C# (CSharp) Method

ArcSin() public static method

ArcSin in degrees.
public static ArcSin ( Primitive sin ) : Primitive
sin Primitive /// The Sin of the angle. ///
return Primitive
        public static Primitive ArcSin(Primitive sin)
        {
            return System.Math.Asin(System.Math.Min(1.0, System.Math.Max(-1.0, sin))) / deg2rad;
        }