aabb
AABB is an acronym with several meanings; in computer graphics and computational geometry, it most commonly denotes an axis-aligned bounding box, a simple volume that encloses a geometric object with faces parallel to the coordinate axes.
In 2D, an AABB is defined by the minimum and maximum coordinates along each axis: xmin, xmax,
Properties: The box is not rotated relative to the axes, which makes it inexpensive to compute and
Computation: Given a set of points or a mesh, the AABB is obtained by taking the component-wise
Algorithms and usage: AABBs are used in broad-phase collision detection, bounding-volume hierarchies, visibility culling, and as
Variants and alternatives: AABB contrasts with oriented bounding boxes (OBBs) which allow rotation and can provide
Limitations: Because they are axis-aligned, AABBs may be loose around rotated or elongated objects, leading to