Navigation
API > API/Runtime > API/Runtime/Navmesh
Description
Determines if two axis-aligned bounding boxes overlap.
| Name | dtOverlapQuantBounds |
| Type | function |
| Header File | /Engine/Source/Runtime/Navmesh/Public/Detour/DetourCommon.h |
| Include Path | #include "Detour/DetourCommon.h" |
bool dtOverlapQuantBounds
(
const unsigned short amin,
const unsigned short amax,
const unsigned short bmin,
const unsigned short bmax
)
True if the two AABB's overlap.
Parameters
| Name | Remarks |
|---|---|
| amin | Minimum bounds of box A. [(x, y, z)] |
| amax | Maximum bounds of box A. [(x, y, z)] |
| bmin | Minimum bounds of box B. [(x, y, z)] |
| bmax | Maximum bounds of box B. [(x, y, z)] |