NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
aabb.hpp
1#pragma once
2
3#include <lib/nw4r/math/vec.hpp>
4
5namespace nw4r {
6namespace math {
7
8/// @brief An axis-aligned bounding box.
9struct AABB {
10 VEC3 minCorner;
11 VEC3 maxCorner;
12};
13
14} // namespace math
15} // namespace nw4r
Math library.
Definition docgroup.h:16
An axis-aligned bounding box.
Definition aabb.hpp:9
A three-dimensional floating point vector.
Definition vec.hpp:22