AcTools.Utils.MathUtils.Sqrt C# (CSharp) Method

Sqrt() public static method

public static Sqrt ( this v ) : double
v this
return double
        public static double Sqrt(this double v) => Math.Sqrt(v);
        public static float Sqrt(this float v) => (float)Math.Sqrt(v);

Same methods

MathUtils::Sqrt ( this v ) : float