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

Abs() public static method

public static Abs ( this v ) : double
v this
return double
        public static double Abs(this double v) => v < 0d ? -v : v;
        public static float Abs(this float v) => v < 0f ? -v : v;

Same methods

MathUtils::Abs ( this v ) : float