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

Sin() public static method

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