geom/aabb: add brief class description

This commit is contained in:
Danny Robson 2017-08-24 17:27:46 +10:00
parent f53b547a40
commit 1277975708

View File

@ -25,6 +25,10 @@
namespace util::geom {
///////////////////////////////////////////////////////////////////////////
/// represents an axis-aligned bounding-box through two opposing corners.
///
/// p0 must be less-than-or-equal to p1. equality is allowed so that we
/// can represent zero sized bounding-boxes.
template <size_t S, typename T>
struct aabb {
aabb () = default;