[Cleanup] Remove GetTransformation() and GetInvertedTransformation() from oriented_bounding_box.h (#3084)

# Notes
- These are unused.
This commit is contained in:
Alex King 2023-03-17 06:16:40 -04:00 committed by GitHub
parent 232b1028d7
commit fe063637e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,9 +12,6 @@ public:
~OrientedBoundingBox() { }
bool ContainsPoint(const glm::vec3 &p) const;
glm::mat4& GetTransformation() { return transformation; }
glm::mat4& GetInvertedTransformation() { return inverted_transformation; }
private:
float min_x, max_x;
float min_y, max_y;