]> git.localhorst.tv Git - blank.git/blobdiff - src/model/bounds.hpp
ubuntu latest and devel docker images
[blank.git] / src / model / bounds.hpp
index 05f8df16950f20860269b0fe2bccd4626486f543..7177290521bb258311b3763e765c73e9aac8e05c 100644 (file)
@@ -2,26 +2,14 @@
 #define BLANK_MODEL_BOUNDS_HPP_
 
 #include "CollisionBounds.hpp"
-#include "geometry.hpp"
+#include "../geometry/primitive.hpp"
+#include "../graphics/glm.hpp"
 
 #include <vector>
-#include <glm/glm.hpp>
 
 
 namespace blank {
 
-class NullBounds
-: public CollisionBounds {
-
-public:
-       NullBounds();
-
-       bool Intersects(const Ray &, const glm::mat4 &, float &, glm::vec3 &) const noexcept override;
-       bool Intersects(const glm::mat4 &, const AABB &, const glm::mat4 &, float &, glm::vec3 &) const noexcept override;
-
-};
-
-
 class CuboidBounds
 : public CollisionBounds {