Afterglow.Math.MathExtensions.EqualsWithDelta C# (CSharp) Method

EqualsWithDelta() public static method

Indicates whether the two floats are equal under the consideration of Constants.DELTA.
public static EqualsWithDelta ( this value, float other ) : bool
value this The value.
other float The other.
return bool
        public static bool EqualsWithDelta(this float value, float other)
        {
            return value.EqualsWithDelta(other, Constants.DELTA);
        }

Same methods

MathExtensions::EqualsWithDelta ( this value, float other, float delta ) : bool