diff --git a/src/SceneGraph/DualComplexTransformation.h b/src/SceneGraph/DualComplexTransformation.h index 539c5ed79..6037fab9e 100644 --- a/src/SceneGraph/DualComplexTransformation.h +++ b/src/SceneGraph/DualComplexTransformation.h @@ -129,7 +129,7 @@ template class BasicDualComplexTransformation: public AbstractBasicTran } void doRotate(Math::Rad angle, TransformationType type) override final { - doRotate(angle, type); + rotate(angle, type); } /* No assertions fired, for internal use */ diff --git a/src/SceneGraph/MatrixTransformation2D.h b/src/SceneGraph/MatrixTransformation2D.h index ae282f44d..d3b4f03dc 100644 --- a/src/SceneGraph/MatrixTransformation2D.h +++ b/src/SceneGraph/MatrixTransformation2D.h @@ -129,7 +129,7 @@ template class BasicMatrixTransformation2D: public AbstractBasicTransla } void doRotate(Math::Rad angle, TransformationType type) override final { - doRotate(angle, type); + rotate(angle, type); } void doScale(const Math::Vector2& vector, TransformationType type) override final { diff --git a/src/SceneGraph/RigidMatrixTransformation2D.h b/src/SceneGraph/RigidMatrixTransformation2D.h index b369f114e..072015013 100644 --- a/src/SceneGraph/RigidMatrixTransformation2D.h +++ b/src/SceneGraph/RigidMatrixTransformation2D.h @@ -146,7 +146,7 @@ template class BasicRigidMatrixTransformation2D: public AbstractBasicTr } void doRotate(Math::Rad angle, TransformationType type) override final { - doRotate(angle, type); + rotate(angle, type); } /* No assertions fired, for internal use */