Click or drag to resize
DigitalRuneNumericIsZero Method (Double)
Determines whether a value is zero (regarding the tolerance EpsilonD).

Namespace: DigitalRune.Mathematics
Assembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax
public static bool IsZero(
	double value
)

Parameters

value
Type: SystemDouble
The value to test.

Return Value

Type: Boolean
if the specified value is zero (within the tolerance); otherwise, .
Remarks
A value is zero if |x| < EpsilonD.
See Also