From cb343048b52e0922b8ff864ea50cd25e5cca307c Mon Sep 17 00:00:00 2001 From: Alfredo Tupone Date: Mon, 4 Mar 2024 20:02:55 +0100 Subject: [PATCH] getSize in MeshObstacle is the same as in Obstacle --- include/MeshObstacle.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/include/MeshObstacle.h b/include/MeshObstacle.h index ae5249d6fd..3abba4cad6 100644 --- a/include/MeshObstacle.h +++ b/include/MeshObstacle.h @@ -105,7 +105,6 @@ class MeshObstacle : public Obstacle int getFaceCount() const; MeshFace* getFace(int face) const; const float* getPosition() const; - const float* getSize() const; bool useSmoothBounce() const; bool noClusters() const; @@ -210,11 +209,6 @@ inline const float* MeshObstacle::getPosition() const return pos; } -inline const float* MeshObstacle::getSize() const -{ - return size; -} - inline bool MeshObstacle::useSmoothBounce() const { return smoothBounce;