LitDev.LDMath.Cos C# (CSharp) Method

Cos() public static method

Cos of an angle in degrees.
public static Cos ( Primitive angle ) : Primitive
angle Primitive /// The angle in degrees. ///
return Primitive
        public static Primitive Cos(Primitive angle)
        {
            return System.Math.Cos(angle * deg2rad);
        }