| Vector2FAreNumericallyEqual Method (Vector2F, Vector2F, Single) |
Determines whether two vectors are equal (regarding a specific tolerance).
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public static bool AreNumericallyEqual(
Vector2F vector1,
Vector2F vector2,
float epsilon
)
Public Shared Function AreNumericallyEqual (
vector1 As Vector2F,
vector2 As Vector2F,
epsilon As Single
) As Boolean
public:
static bool AreNumericallyEqual(
Vector2F vector1,
Vector2F vector2,
float epsilon
)
static member AreNumericallyEqual :
vector1 : Vector2F *
vector2 : Vector2F *
epsilon : float32 -> bool
Parameters
- vector1
- Type: DigitalRune.Mathematics.AlgebraVector2F
The first vector. - vector2
- Type: DigitalRune.Mathematics.AlgebraVector2F
The second vector. - epsilon
- Type: SystemSingle
The tolerance value.
Return Value
Type:
Boolean if the vectors are equal (within the tolerance
epsilon); otherwise,
.
Remarks
The two vectors are compared component-wise. If the differences of the components are less
than epsilon the vectors are considered as being equal.
See Also