summaryrefslogtreecommitdiffstats
path: root/src/core/aabb.hh
diff options
context:
space:
mode:
authoruntodesu <kirill@untode.su>2025-06-29 22:24:42 +0500
committeruntodesu <kirill@untode.su>2025-06-29 22:24:42 +0500
commit6cd00aacfa22fed6a54a9b812f6b069ad16feec0 (patch)
treeb77f4e665da3dd235cdb01e7e6ea78c1c02ecf2e /src/core/aabb.hh
parentf440914e1ae453768d09383f332bc7844e0a700e (diff)
downloadvoxelius-6cd00aacfa22fed6a54a9b812f6b069ad16feec0.tar.bz2
voxelius-6cd00aacfa22fed6a54a9b812f6b069ad16feec0.zip
Move game sources into src subdirectory
Diffstat (limited to 'src/core/aabb.hh')
-rw-r--r--src/core/aabb.hh31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/core/aabb.hh b/src/core/aabb.hh
new file mode 100644
index 0000000..fe07060
--- /dev/null
+++ b/src/core/aabb.hh
@@ -0,0 +1,31 @@
+#ifndef CORE_AABB_HH
+#define CORE_AABB_HH 1
+#pragma once
+
+#include "core/macros.hh"
+
+class AABB final {
+public:
+ DECLARE_DEFAULT_CONSTRUCTOR(AABB);
+ explicit AABB(const glm::fvec3& min, const glm::fvec3& max);
+ virtual ~AABB(void) = default;
+
+ void set_bounds(const glm::fvec3& min, const glm::fvec3& max);
+ void set_offset(const glm::fvec3& base, const glm::fvec3& size);
+
+ const glm::fvec3& get_min(void) const;
+ const glm::fvec3& get_max(void) const;
+
+ bool contains(const glm::fvec3& point) const;
+ bool intersect(const AABB& other_box) const;
+
+ AABB combine_with(const AABB& other_box) const;
+ AABB multiply_with(const AABB& other_box) const;
+ AABB push(const glm::fvec3& vector) const;
+
+public:
+ glm::fvec3 min;
+ glm::fvec3 max;
+};
+
+#endif /* CORE_AABB_HH */