From 46089a06113f1fd6877a7ca55f19a9760444ae5f Mon Sep 17 00:00:00 2001 From: Andrew Meadows Date: Fri, 12 Sep 2014 08:37:47 -0700 Subject: [PATCH] fix ray-vs-AACube logic --- libraries/shared/src/PlaneShape.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libraries/shared/src/PlaneShape.h b/libraries/shared/src/PlaneShape.h index a2e4a3799d..8d6de326af 100644 --- a/libraries/shared/src/PlaneShape.h +++ b/libraries/shared/src/PlaneShape.h @@ -21,6 +21,9 @@ public: glm::vec3 getNormal() const; glm::vec4 getCoefficients() const; + void setNormal(const glm::vec3& normal); + void setPoint(const glm::vec3& point); + bool findRayIntersection(RayIntersectionInfo& intersection) const; };