Click or drag to resize
DigitalRuneCollisionDetectionHaveAabbContact Method
Returns if the axis-aligned bounding boxes (AABBs) of two CollisionObjects are in contact.

Namespace: DigitalRune.Geometry.Collisions
Assembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax
public bool HaveAabbContact(
	CollisionObject objectA,
	CollisionObject objectB
)

Parameters

objectA
Type: DigitalRune.Geometry.CollisionsCollisionObject
The first collision object.
objectB
Type: DigitalRune.Geometry.CollisionsCollisionObject
The second collision object.

Return Value

Type: Boolean
if the objects' AABBs are touching or intersecting; otherwise .
Exceptions
ExceptionCondition
ArgumentNullExceptionobjectA is .
ArgumentNullExceptionobjectB is .
Remarks
Only the (automatic computed) axis-aligned bounding boxes are tested - not the exact geometry of the objects. For an exact test, call HaveContact(CollisionObject, CollisionObject).
See Also