From fe063637e9e4631c11121f5049b8cb7915c9db8d Mon Sep 17 00:00:00 2001 From: Alex King <89047260+Kinglykrab@users.noreply.github.com> Date: Fri, 17 Mar 2023 06:16:40 -0400 Subject: [PATCH] [Cleanup] Remove GetTransformation() and GetInvertedTransformation() from oriented_bounding_box.h (#3084) # Notes - These are unused. --- zone/oriented_bounding_box.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/zone/oriented_bounding_box.h b/zone/oriented_bounding_box.h index b662af84b..4d8a77fb3 100644 --- a/zone/oriented_bounding_box.h +++ b/zone/oriented_bounding_box.h @@ -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;