From f09e5791837bb003f7c5db8c0e3162636bc9a9c2 Mon Sep 17 00:00:00 2001 From: Mel Date: Wed, 12 Jul 2023 03:39:01 +0200 Subject: 3D Clouds --- src/Math/AABB.hpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/Math/AABB.hpp (limited to 'src/Math') diff --git a/src/Math/AABB.hpp b/src/Math/AABB.hpp new file mode 100644 index 0000000..2c02abf --- /dev/null +++ b/src/Math/AABB.hpp @@ -0,0 +1,10 @@ +#pragma once +#include "Vector.hpp" + +namespace Math { + +struct AABB { + Vector<3> min, max; +}; + +} -- cgit 1.4.1