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; };