idTech4.idMath.Sin C# (CSharp) Method

Sin() public static method

public static Sin ( float s ) : float
s float
return float
		public static float Sin(float s)
		{
			return (float) Math.Sin(s);
		}