From 6cd00aacfa22fed6a54a9b812f6b069ad16feec0 Mon Sep 17 00:00:00 2001 From: untodesu Date: Sun, 29 Jun 2025 22:24:42 +0500 Subject: Move game sources into src subdirectory --- core/aabb.hh | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 core/aabb.hh (limited to 'core/aabb.hh') diff --git a/core/aabb.hh b/core/aabb.hh deleted file mode 100644 index fe07060..0000000 --- a/core/aabb.hh +++ /dev/null @@ -1,31 +0,0 @@ -#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 */ -- cgit