| 28 | : Plane(normal, -glm::dot(normal, point)) {} |
| 29 | |
| 30 | double Plane::getPointDistance(const glm::dvec3& point) const noexcept { |
| 31 | return glm::dot(this->_normal, point) + this->_distance; |
| 32 | } |
| 33 | |
| 34 | glm::dvec3 |
| 35 | Plane::projectPointOntoPlane(const glm::dvec3& point) const noexcept { |
no outgoing calls
no test coverage detected