summary refs log tree commit diff
path: root/src/Math/AABB.hpp
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2023-07-12 03:39:01 +0200
committerMel <einebeere@gmail.com>2023-07-12 03:39:01 +0200
commitf09e5791837bb003f7c5db8c0e3162636bc9a9c2 (patch)
tree36b9a007f119388bb7943489e8d203de04269483 /src/Math/AABB.hpp
parent0ce26f2a49fd6d64a690b84b1932126edfbfbee6 (diff)
downloadmeowcraft-f09e5791837bb003f7c5db8c0e3162636bc9a9c2.tar.zst
meowcraft-f09e5791837bb003f7c5db8c0e3162636bc9a9c2.zip
3D Clouds
Diffstat (limited to 'src/Math/AABB.hpp')
-rw-r--r--src/Math/AABB.hpp10
1 files changed, 10 insertions, 0 deletions
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;
+};
+
+}