Browse Source

SceneGraph: fixed copypaste error.

pull/278/head
Vladimír Vondruš 13 years ago
parent
commit
77093a9b65
  1. 2
      src/SceneGraph/AbstractTranslationRotation3D.h

2
src/SceneGraph/AbstractTranslationRotation3D.h

@ -120,7 +120,7 @@ class AbstractTranslationRotation3D: public AbstractTransformation<3, T> {
/* Overloads to remove WTF-factor from method chaining order */
#ifndef DOXYGEN_GENERATING_OUTPUT
AbstractTranslationRotation3D<T>* resetTransformation() {
AbstractTransformation<2, T>::resetTransformation();
AbstractTransformation<3, T>::resetTransformation();
return this;
}
#endif

Loading…
Cancel
Save