diff --git a/src/Math/Transform.h b/src/Math/Transform.h index 3746a23..be6cdd9 100644 --- a/src/Math/Transform.h +++ b/src/Math/Transform.h @@ -101,7 +101,7 @@ public: inline Matrix3f GetRotation() const { return this->m_T.rotation(); } - inline void Translate(const Vector3f v) { this->m_T.translate(v); } + inline void Translate(const Vector3f v) { this->m_T.pretranslate(v); } inline void Scale(const Vector3f v) { this->m_T.scale(v); }