Browse Source

SceneGraph: forgot these typedefs when dealing with <>.

pull/278/head
Vladimír Vondruš 13 years ago
parent
commit
4026d814cd
  1. 5
      src/SceneGraph/MatrixTransformation2D.h
  2. 6
      src/SceneGraph/RigidMatrixTransformation2D.h

5
src/SceneGraph/MatrixTransformation2D.h

@ -175,7 +175,12 @@ template<class T> class BasicMatrixTransformation2D: public AbstractBasicTransla
Math::Matrix3<T> _transformation;
};
/**
@brief Two-dimensional transformation for float scenes implemented using matrices
@see @ref MatrixTransformation3D
*/
typedef BasicMatrixTransformation2D<Float> MatrixTransformation2D;
}}

6
src/SceneGraph/RigidMatrixTransformation2D.h

@ -208,6 +208,12 @@ template<class T> class BasicRigidMatrixTransformation2D: public AbstractBasicTr
Math::Matrix3<T> _transformation;
};
/**
@brief Two-dimensional rigid transformation for float scenes implemented using matrices
@see @ref RigidMatrixTransformation3D
*/
typedef BasicRigidMatrixTransformation2D<Float> RigidMatrixTransformation2D;
}}

Loading…
Cancel
Save