idTech4.idMath.Cos C# (CSharp) Method

Cos() public static method

public static Cos ( float c ) : float
c float
return float
		public static float Cos(float c)
		{
			return (float) Math.Cos(c);
		}