Click or drag to resize
DigitalRuneAabbAreNumericallyEqual Method (Aabb, Aabb)
Determines whether two AABBs are equal (regarding the tolerance EpsilonF).

Namespace: DigitalRune.Geometry.Shapes
Assembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax
public static bool AreNumericallyEqual(
	Aabb first,
	Aabb second
)

Parameters

first
Type: DigitalRune.Geometry.ShapesAabb
The first AABB.
second
Type: DigitalRune.Geometry.ShapesAabb
The second AABB.

Return Value

Type: Boolean
if the AABBs are equal (within the tolerance EpsilonF); otherwise, .
Remarks
If the components of Minimum and Maximum differ less then EpsilonF the AABBs are considered as being equal.
See Also