Browse Source

SceneGraph: added TODO.

pull/34/head
Vladimír Vondruš 13 years ago
parent
commit
5949f7ae41
  1. 6
      src/SceneGraph/AbstractTransformation.h

6
src/SceneGraph/AbstractTransformation.h

@ -83,7 +83,11 @@ template<UnsignedInt dimensions, class T> class MAGNUM_SCENEGRAPH_EXPORT Abstrac
virtual void doResetTransformation() = 0;
};
/** @brief Transformation type */
/**
@brief Transformation type
@todo Get rid of this in favor of separate function for each type (less branching)
*/
enum class TransformationType: UnsignedByte {
/** Global transformation, applied after all other transformations. */
Global = 0x00,

Loading…
Cancel
Save