| Vector2DClampToZero Method (Vector2D, Double) |
Returns a vector with near-zero vector components clamped to 0.
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public static Vector2D ClampToZero(
Vector2D vector,
double epsilon
)
Public Shared Function ClampToZero (
vector As Vector2D,
epsilon As Double
) As Vector2D
public:
static Vector2D ClampToZero(
Vector2D vector,
double epsilon
)
static member ClampToZero :
vector : Vector2D *
epsilon : float -> Vector2D
Parameters
- vector
- Type: DigitalRune.Mathematics.AlgebraVector2D
The vector. - epsilon
- Type: SystemDouble
The tolerance value.
Return Value
Type:
Vector2DThe vector with small components clamped to zero.
Remarks
Each vector component (X and Y) is compared to zero. If the component is in the interval
[-epsilon, +epsilon] it is set to zero, otherwise it
remains unchanged.
See Also