AcTools.Utils.MathUtils.Abs C# (CSharp) Метод

Abs() публичный статический Метод

public static Abs ( this v ) : double
v this
Результат 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