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

Cos() public static method

Returns the cosine of the given angle.
public static Cos ( float angle ) : float
angle float An angle, measured in radians.
return float
        public static float Cos(float angle)
        {
            return (float)System.Math.Cos(angle);
        }