idTech4.idMath.Sin C# (CSharp) 메소드

Sin() 공개 정적인 메소드

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