Click or drag to resize
DigitalRuneNumericClampToZero Method (Single, Single)
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 float ClampToZero(
	float value,
	float epsilon
)

Parameters

value
Type: SystemSingle
The value.
epsilon
Type: SystemSingle
The tolerance value.

Return Value

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