Method IsZero
IsZero(double)
IsZero - Returns whether or not the double is "close" to 0. Same as AreClose(double, 0), but this is faster.
public static bool IsZero(double value)
Parameters
value
doubleThe double to compare to 0.
Returns
- bool
bool - the result of the AreClose comparision.