From c0e8d4c00b4526522d989c12119956ee98e84393 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Fri, 15 Jan 2021 21:06:51 +0100 Subject: [PATCH] Math: make Range searchable under AABB. --- src/Magnum/Math/Range.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Magnum/Math/Range.h b/src/Magnum/Math/Range.h index 513d9627f..10e2333e6 100644 --- a/src/Magnum/Math/Range.h +++ b/src/Magnum/Math/Range.h @@ -47,7 +47,9 @@ namespace Implementation { /** @brief N-dimensional range -Axis-aligned line (in 1D), rectangle (in 2D) or cube (in 3D). The minimal +@m_keywords{AABB} + +Axis-aligned line (in 1D), rectangle (in 2D) or box (in 3D). The minimal coordinate is inclusive, maximal exclusive. See @ref Range1D, @ref Range2D and @ref Range3D specializations for given dimension count.