| NumericIsZero Method (Double) |
Determines whether a value is zero (regarding the tolerance
EpsilonD).
Namespace: DigitalRune.MathematicsAssembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax public static bool IsZero(
double value
)
Public Shared Function IsZero (
value As Double
) As Boolean
public:
static bool IsZero(
double value
)
static member IsZero :
value : float -> bool
Parameters
- value
- Type: SystemDouble
The value to test.
Return Value
Type:
Boolean if the specified value is zero (within the tolerance); otherwise,
.
Remarks See Also