1 #ifndef BLANK_MODEL_SHAPES_HPP_
2 #define BLANK_MODEL_SHAPES_HPP_
4 #include "geometry.hpp"
19 bool Intersects(const Ray &, const glm::mat4 &, float &, glm::vec3 &) const noexcept override;
20 bool Intersects(const glm::mat4 &, const AABB &, const glm::mat4 &, float &, glm::vec3 &) const noexcept override;
29 CuboidShape(const AABB &bounds);
31 bool Intersects(const Ray &, const glm::mat4 &, float &, glm::vec3 &) const noexcept override;
32 bool Intersects(const glm::mat4 &, const AABB &, const glm::mat4 &, float &, glm::vec3 &) const noexcept override;
44 StairShape(const AABB &bounds, const glm::vec2 &clip);
46 bool Intersects(const Ray &, const glm::mat4 &, float &, glm::vec3 &) const noexcept override;
47 bool Intersects(const glm::mat4 &, const AABB &, const glm::mat4 &, float &, glm::vec3 &) const noexcept override;