idTech4.idMath.Sqrt C# (CSharp) Method

Sqrt() public static method

public static Sqrt ( float v ) : float
v float
return float
		public static float Sqrt(float v)
		{
			return (float) Math.Sqrt(v);
		}