|
|
|
|
@ -143,7 +143,7 @@ template<UnsignedInt dimensions, class T> class MAGNUM_SCENEGRAPH_EXPORT Abstrac
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected: |
|
|
|
|
~AbstractBasicTransformation() = default; |
|
|
|
|
~AbstractBasicTransformation(); |
|
|
|
|
|
|
|
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT |
|
|
|
|
protected: |
|
|
|
|
@ -154,6 +154,8 @@ template<UnsignedInt dimensions, class T> class MAGNUM_SCENEGRAPH_EXPORT Abstrac
|
|
|
|
|
virtual void doResetTransformation() = 0; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
template<UnsignedInt dimensions, class T> AbstractBasicTransformation<dimensions, T>::~AbstractBasicTransformation() = default; |
|
|
|
|
|
|
|
|
|
/** @brief Transformation type */ |
|
|
|
|
enum class TransformationType: UnsignedByte { |
|
|
|
|
/** Global transformation, applied after all other transformations. */ |
|
|
|
|
|