Click or drag to resize
DigitalRuneMatrix44FClampToZero Method (Single)
Clamps near-zero matrix elements to zero.

Namespace: DigitalRune.Mathematics.Algebra
Assembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax
public void ClampToZero(
	float epsilon
)

Parameters

epsilon
Type: SystemSingle
The tolerance value.
Remarks
Each matrix element is compared to zero. If the element is in the interval [-epsilon, +epsilon] it is set to zero, otherwise it remains unchanged.
See Also