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

Sqrt() public static method

Returns the square root of a specified number.
public static Sqrt ( float x ) : float
x float The number.
return float
        public static float Sqrt(float x)
        {
            return (float)System.Math.Sqrt(x);
        }