What is AABB – Collision detection?
AABB stands for “Axis-Aligned Bounding Box.” It is a fairly computationally- and memory-efficient way of representing a volume, typically used to see if two objects might be touching. Since it is axis-aligned, it does not necessarily “fit” your real 3D object very well. AABB checks are often used as a coarse first-approximation to see if … Read more