| AabbAreNumericallyEqual Method (Aabb, Aabb) |
Determines whether two AABBs are equal (regarding the tolerance
EpsilonF).
Namespace: DigitalRune.Geometry.ShapesAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax public static bool AreNumericallyEqual(
Aabb first,
Aabb second
)
Public Shared Function AreNumericallyEqual (
first As Aabb,
second As Aabb
) As Boolean
public:
static bool AreNumericallyEqual(
Aabb first,
Aabb second
)
static member AreNumericallyEqual :
first : Aabb *
second : Aabb -> bool
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 See Also