AcTools.Utils.MathUtils.Abs C# (CSharp) Méthode

Abs() public static méthode

public static Abs ( this v ) : double
v this
Résultat 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