]> git.localhorst.tv Git - blank.git/blobdiff - src/model/bounds.hpp
use (and fix) new shape implementation
[blank.git] / src / model / bounds.hpp
index 05f8df16950f20860269b0fe2bccd4626486f543..3bbb6d798250bb442f84670a38582d51b41751fd 100644 (file)
 
 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 {