| GeometryHelperHaveContact Method (Aabb, Aabb) |
Determines whether two axis-aligned bounding boxes (AABBs) overlap.
Namespace: DigitalRune.GeometryAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax public static bool HaveContact(
Aabb aabbA,
Aabb aabbB
)
Public Shared Function HaveContact (
aabbA As Aabb,
aabbB As Aabb
) As Boolean
public:
static bool HaveContact(
Aabb aabbA,
Aabb aabbB
)
static member HaveContact :
aabbA : Aabb *
aabbB : Aabb -> bool
Parameters
- aabbA
- Type: DigitalRune.Geometry.ShapesAabb
The first axis-aligned bounding box (AABB). - aabbB
- Type: DigitalRune.Geometry.ShapesAabb
The second axis-aligned bounding box (AABB).
Return Value
Type:
Boolean if the AABBs overlap; otherwise
.
See Also