Click or drag to resize
DigitalRuneNumericClampToZero Method (Double, Double)
Clamps near-zero values to zero.

Namespace: DigitalRune.Mathematics
Assembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax
public static double ClampToZero(
	double value,
	double epsilon
)

Parameters

value
Type: SystemDouble
The value.
epsilon
Type: SystemDouble
The tolerance value.

Return Value

Type: Double
0 if the value is nearly zero (within the tolerance epsilon) or the original value otherwise.
See Also