diff --git a/src/Magnum/SceneGraph/AbstractCamera.h b/src/Magnum/SceneGraph/AbstractCamera.h index 818361965..11e5ed8b2 100644 --- a/src/Magnum/SceneGraph/AbstractCamera.h +++ b/src/Magnum/SceneGraph/AbstractCamera.h @@ -137,7 +137,7 @@ template class AbstractCamera: public AbstractF protected: /** * @brief Constructor - * @param object %Object holding the camera + * @param object Object holding the camera */ explicit AbstractCamera(AbstractObject& object); @@ -167,7 +167,7 @@ template class AbstractCamera: public AbstractF /** @brief Base camera for two-dimensional scenes -Convenience alternative to %AbstractCamera<2, T>. See +Convenience alternative to `AbstractCamera<2, T>`. See @ref AbstractCamera for more information. @see @ref AbstractCamera2D, @ref AbstractBasicCamera3D */ @@ -183,7 +183,7 @@ typedef AbstractBasicCamera2D AbstractCamera2D; /** @brief Base camera for three-dimensional scenes -Convenience alternative to %AbstractCamera<3, T>. See +Convenience alternative to `AbstractCamera<3, T>`. See @ref AbstractCamera for more information. @see @ref AbstractCamera3D, @ref AbstractBasicCamera2D */ diff --git a/src/Magnum/SceneGraph/AbstractFeature.h b/src/Magnum/SceneGraph/AbstractFeature.h index 944c68f87..e76fa9385 100644 --- a/src/Magnum/SceneGraph/AbstractFeature.h +++ b/src/Magnum/SceneGraph/AbstractFeature.h @@ -176,7 +176,7 @@ template class AbstractFeature public: /** * @brief Constructor - * @param object %Object holding this feature + * @param object Object holding this feature */ explicit AbstractFeature(AbstractObject& object); @@ -189,7 +189,7 @@ template class AbstractFeature virtual ~AbstractFeature() = 0; - /** @brief %Object holding this feature */ + /** @brief Object holding this feature */ AbstractObject& object() { return *Containers::LinkedListItem, AbstractObject>::list(); } @@ -295,7 +295,7 @@ template class AbstractFeature /** @brief Base feature for two-dimensional scenes -Convenience alternative to %AbstractFeature<2, T>. See +Convenience alternative to `AbstractFeature<2, T>`. See @ref AbstractFeature for more information. @see @ref AbstractFeature2D, @ref AbstractBasicFeature3D */ @@ -311,7 +311,7 @@ typedef AbstractBasicFeature2D AbstractFeature2D; /** @brief Base feature for three-dimensional scenes -Convenience alternative to %AbstractFeature<3, T>. See +Convenience alternative to `AbstractFeature<3, T>`. See @ref AbstractFeature for more information. @see @ref AbstractFeature3D, @ref AbstractBasicFeature2D */ diff --git a/src/Magnum/SceneGraph/AbstractGroupedFeature.h b/src/Magnum/SceneGraph/AbstractGroupedFeature.h index 40893355d..477884e0f 100644 --- a/src/Magnum/SceneGraph/AbstractGroupedFeature.h +++ b/src/Magnum/SceneGraph/AbstractGroupedFeature.h @@ -73,7 +73,7 @@ template class AbstractGroupedFe public: /** * @brief Constructor - * @param object %Object this feature belongs to + * @param object Object this feature belongs to * @param group Group this feature belongs to * * Adds the feature to the object and to group, if specified. @@ -110,7 +110,7 @@ template class AbstractGroupedFe /** @brief Base grouped feature for two-dimensional scenes -Convenience alternative to %AbstractGroupedFeature<2, Derived, T>. See +Convenience alternative to `AbstractGroupedFeature<2, Derived, T>`. See @ref AbstractGroupedFeature for more information. @see @ref AbstractGroupedFeature2D, @ref AbstractBasicGroupedFeature3D */ @@ -119,7 +119,7 @@ template using AbstractBasicGroupedFeature2D = AbstractG /** @brief Base grouped feature for two-dimensional float scenes -Convenience alternative to %AbstractBasicGroupedFeature2D. +Convenience alternative to `AbstractBasicGroupedFeature2D`. See @ref AbstractGroupedFeature for more information. @see @ref AbstractGroupedFeature3D */ @@ -128,7 +128,7 @@ template using AbstractGroupedFeature2D = AbstractBasicGroupedFea /** @brief Base grouped feature for three-dimensional scenes -Convenience alternative to %AbstractGroupedFeature<3, Derived, T>. See +Convenience alternative to `AbstractGroupedFeature<3, Derived, T>`. See @ref AbstractGroupedFeature for more information. @see @ref AbstractGroupedFeature3D, @ref AbstractBasicGroupedFeature2D */ @@ -137,7 +137,7 @@ template using AbstractBasicGroupedFeature3D = AbstractG /** @brief Base grouped feature for three-dimensional float scenes -Convenience alternative to %AbstractBasicGroupedFeature3D. +Convenience alternative to `AbstractBasicGroupedFeature3D`. See @ref AbstractGroupedFeature for more information. @see @ref AbstractGroupedFeature2D */ diff --git a/src/Magnum/SceneGraph/AbstractObject.h b/src/Magnum/SceneGraph/AbstractObject.h index 0f3d0478b..6531392d7 100644 --- a/src/Magnum/SceneGraph/AbstractObject.h +++ b/src/Magnum/SceneGraph/AbstractObject.h @@ -118,8 +118,8 @@ template class AbstractObject } /** - * @brief %Scene - * @return %Scene or `nullptr`, if the object is not part of any scene. + * @brief Scene + * @return Scene or `nullptr`, if the object is not part of any scene. */ AbstractObject* scene() { return doScene(); } @@ -270,7 +270,7 @@ template class AbstractObject /** @brief Base object for two-dimensional scenes -Convenience alternative to %AbstractObject<2, T>. See +Convenience alternative to `AbstractObject<2, T>`. See @ref AbstractObject for more information. @see @ref AbstractObject2D, @ref AbstractBasicObject3D */ @@ -286,7 +286,7 @@ typedef AbstractBasicObject2D AbstractObject2D; /** @brief Base object for three-dimensional scenes -Convenience alternative to %AbstractObject<3, T>. See +Convenience alternative to `AbstractObject<3, T>`. See @ref AbstractObject for more information. @see @ref AbstractObject3D, @ref AbstractBasicObject2D */ diff --git a/src/Magnum/SceneGraph/AbstractTransformation.h b/src/Magnum/SceneGraph/AbstractTransformation.h index 9ae6af5a7..110eb37ff 100644 --- a/src/Magnum/SceneGraph/AbstractTransformation.h +++ b/src/Magnum/SceneGraph/AbstractTransformation.h @@ -101,7 +101,7 @@ enum class TransformationType: UnsignedByte { /** @brief Base transformation for two-dimensional scenes -Convenience alternative to %AbstractTransformation<2, T>. See +Convenience alternative to `AbstractTransformation<2, T>`. See @ref AbstractTransformation for more information. @see @ref AbstractTransformation2D, @ref AbstractBasicTransformation3D */ @@ -117,7 +117,7 @@ typedef AbstractBasicTransformation2D AbstractTransformation2D; /** @brief Base transformation for three-dimensional scenes -Convenience alternative to %AbstractTransformation<3, T>. See +Convenience alternative to `AbstractTransformation<3, T>`. See @ref AbstractTransformation for more information. @see @ref AbstractTransformation3D, @ref AbstractBasicTransformation2D */ diff --git a/src/Magnum/SceneGraph/AbstractTranslation.h b/src/Magnum/SceneGraph/AbstractTranslation.h index edd735877..d50b232db 100644 --- a/src/Magnum/SceneGraph/AbstractTranslation.h +++ b/src/Magnum/SceneGraph/AbstractTranslation.h @@ -85,7 +85,7 @@ class AbstractTranslation: public AbstractTransformation { /** @brief Base transformation for two-dimensional scenes supporting translation -Convenience alternative to %AbstractTranslation<2, T, TranslationType>. +Convenience alternative to `AbstractTranslation<2, T, TranslationType>`. See @ref AbstractTranslation for more information. @see @ref AbstractTranslation2D, @ref AbstractBasicTranslation3D */ @@ -106,7 +106,7 @@ typedef AbstractBasicTranslation2D AbstractTranslation2D; /** @brief Base transformation for three-dimensional scenes supporting translation -Convenience alternative to %AbstractTranslation<3, T, TranslationType>. +Convenience alternative to `AbstractTranslation<3, T, TranslationType>`. See @ref AbstractTranslation for more information. @see @ref AbstractTranslation3D, @ref AbstractBasicTranslation2D */ diff --git a/src/Magnum/SceneGraph/AbstractTranslationRotation3D.h b/src/Magnum/SceneGraph/AbstractTranslationRotation3D.h index 5a59e1b06..f64ca9f12 100644 --- a/src/Magnum/SceneGraph/AbstractTranslationRotation3D.h +++ b/src/Magnum/SceneGraph/AbstractTranslationRotation3D.h @@ -68,7 +68,7 @@ template class AbstractBasicTranslationRotation3D: public AbstractBasic * @return Reference to self (for method chaining) * * In some implementations faster than calling - * `rotate(angle, %Vector3::xAxis())`, see subclasses for more + * `rotate(angle, Vector3::xAxis())`, see subclasses for more * information. */ AbstractBasicTranslationRotation3D& rotateX(Math::Rad angle, TransformationType type = TransformationType::Global) { @@ -83,7 +83,7 @@ template class AbstractBasicTranslationRotation3D: public AbstractBasic * @return Reference to self (for method chaining) * * In some implementations faster than calling - * `rotate(angle, %Vector3::yAxis())`, see subclasses for more + * `rotate(angle, Vector3::yAxis())`, see subclasses for more * information. */ AbstractBasicTranslationRotation3D& rotateY(Math::Rad angle, TransformationType type = TransformationType::Global) { @@ -98,7 +98,7 @@ template class AbstractBasicTranslationRotation3D: public AbstractBasic * @return Reference to self (for method chaining) * * In some implementations faster than calling - * `rotate(angle, %Vector3::zAxis())`, see subclasses for more + * `rotate(angle, Vector3::zAxis())`, see subclasses for more * information. */ AbstractBasicTranslationRotation3D& rotateZ(Math::Rad angle, TransformationType type = TransformationType::Global) { diff --git a/src/Magnum/SceneGraph/Animable.h b/src/Magnum/SceneGraph/Animable.h index b35b5e34c..9b866682f 100644 --- a/src/Magnum/SceneGraph/Animable.h +++ b/src/Magnum/SceneGraph/Animable.h @@ -60,9 +60,9 @@ enum class AnimationState: UnsignedByte { Debug MAGNUM_SCENEGRAPH_EXPORT operator<<(Debug debug, AnimationState value); /** -@brief %Animable +@brief Animable -Adds animation feature to object. Each %Animable is part of some +Adds animation feature to object. Each Animable is part of some @ref AnimableGroup, which takes care of running the animations. ## Usage @@ -147,7 +147,7 @@ template class Animable: public AbstractGrouped public: /** * @brief Constructor - * @param object %Object this animable belongs to + * @param object Object this animable belongs to * @param group Group this animable belongs to * * Creates stopped non-repeating animation with infinite duration, @@ -337,32 +337,32 @@ template class Animable: public AbstractGrouped }; /** -@brief %Animable for two-dimensional scenes +@brief Animable for two-dimensional scenes -Convenience alternative to %Animable<2, T>. See @ref Animable for more +Convenience alternative to `Animable<2, T>`. See @ref Animable for more information. @see @ref Animable2D, @ref BasicAnimable3D */ template using BasicAnimable2D = Animable<2, T>; /** -@brief %Animable for two-dimensional float scenes +@brief Animable for two-dimensional float scenes @see @ref Animable3D */ typedef BasicAnimable2D Animable2D; /** -@brief %Animable for three-dimensional scenes +@brief Animable for three-dimensional scenes -Convenience alternative to %Animable<3, T>. See @ref Animable for more +Convenience alternative to `Animable<3, T>`. See @ref Animable for more information. @see @ref Animable3D, @ref BasicAnimable2D */ template using BasicAnimable3D = Animable<3, T>; /** -@brief %Animable for three-dimensional float scenes +@brief Animable for three-dimensional float scenes @see @ref Animable2D */ diff --git a/src/Magnum/SceneGraph/AnimableGroup.h b/src/Magnum/SceneGraph/AnimableGroup.h index cb2e0fc16..53b5dded7 100644 --- a/src/Magnum/SceneGraph/AnimableGroup.h +++ b/src/Magnum/SceneGraph/AnimableGroup.h @@ -73,32 +73,32 @@ template class AnimableGroup: public FeatureGro }; /** -@brief %Animable group for two-dimensional scenes +@brief Animable group for two-dimensional scenes -Convenience alternative to %AnimableGroup<2, T>. See Animable for +Convenience alternative to `AnimableGroup<2, T>`. See Animable for more information. @see @ref AnimableGroup2D, @ref BasicAnimableGroup3D */ template using BasicAnimableGroup2D = AnimableGroup<2, T>; /** -@brief %Animable group for two-dimensional float scenes +@brief Animable group for two-dimensional float scenes @see @ref AnimableGroup3D */ typedef BasicAnimableGroup2D AnimableGroup2D; /** -@brief %Animable group for three-dimensional scenes +@brief Animable group for three-dimensional scenes -Convenience alternative to %AnimableGroup<3, T>. See Animable for +Convenience alternative to `AnimableGroup<3, T>`. See Animable for more information. @see @ref AnimableGroup3D, @ref BasicAnimableGroup2D */ template using BasicAnimableGroup3D = AnimableGroup<3, T>; /** -@brief %Animable group for three-dimensional float scenes +@brief Animable group for three-dimensional float scenes @see @ref AnimableGroup2D */ diff --git a/src/Magnum/SceneGraph/Camera2D.h b/src/Magnum/SceneGraph/Camera2D.h index 6a94151c1..a4c1c0b4b 100644 --- a/src/Magnum/SceneGraph/Camera2D.h +++ b/src/Magnum/SceneGraph/Camera2D.h @@ -63,7 +63,7 @@ template class BasicCamera2D: public AbstractBasicCamera2D { public: /** * @brief Constructor - * @param object %Object holding this feature + * @param object Object holding this feature * * Sets orthographic projection to the default OpenGL cube (range @f$ [-1; 1] @f$ in all directions). * @see @ref setProjection() diff --git a/src/Magnum/SceneGraph/Camera3D.h b/src/Magnum/SceneGraph/Camera3D.h index 45aeca337..068e61aca 100644 --- a/src/Magnum/SceneGraph/Camera3D.h +++ b/src/Magnum/SceneGraph/Camera3D.h @@ -68,7 +68,7 @@ template class BasicCamera3D: public AbstractBasicCamera3D { public: /** * @brief Constructor - * @param object %Object holding this feature + * @param object Object holding this feature */ explicit BasicCamera3D(AbstractBasicObject3D& object); diff --git a/src/Magnum/SceneGraph/Drawable.h b/src/Magnum/SceneGraph/Drawable.h index 69c837714..b545dca8b 100644 --- a/src/Magnum/SceneGraph/Drawable.h +++ b/src/Magnum/SceneGraph/Drawable.h @@ -34,9 +34,9 @@ namespace Magnum { namespace SceneGraph { /** -@brief %Drawable +@brief Drawable -Adds drawing function to the object. Each %Drawable is part of some +Adds drawing function to the object. Each Drawable is part of some @ref DrawableGroup and the whole group is drawn with particular camera using @ref AbstractCamera::draw(). @@ -134,7 +134,7 @@ template class Drawable: public AbstractGrouped public: /** * @brief Constructor - * @param object %Object this drawable belongs to + * @param object Object this drawable belongs to * @param drawables Group this drawable belongs to * * Adds the feature to the object and also to the group, if specified. @@ -158,7 +158,7 @@ template class Drawable: public AbstractGrouped /** * @brief Draw the object using given camera - * @param transformationMatrix %Object transformation relative + * @param transformationMatrix Object transformation relative * to camera * @param camera Camera * @@ -169,32 +169,32 @@ template class Drawable: public AbstractGrouped }; /** -@brief %Drawable for two-dimensional scenes +@brief Drawable for two-dimensional scenes -Convenience alternative to %Drawable<2, T>. See @ref Drawable for more +Convenience alternative to `Drawable<2, T>`. See @ref Drawable for more information. @see @ref Drawable2D, @ref BasicDrawable3D */ template using BasicDrawable2D = Drawable<2, T>; /** -@brief %Drawable for two-dimensional float scenes +@brief Drawable for two-dimensional float scenes @see @ref Drawable3D */ typedef BasicDrawable2D Drawable2D; /** -@brief %Drawable for three-dimensional scenes +@brief Drawable for three-dimensional scenes -Convenience alternative to %Drawable<3, T>. See @ref Drawable for more +Convenience alternative to `Drawable<3, T>`. See @ref Drawable for more information. @see @ref Drawable3D, @ref BasicDrawable3D */ template using BasicDrawable3D = Drawable<3, T>; /** -@brief %Drawable for three-dimensional float scenes +@brief Drawable for three-dimensional float scenes @see @ref Drawable2D */ @@ -212,7 +212,7 @@ template using DrawableGroup = FeatureGroup%DrawableGroup<2, T>. See @ref Drawable for +Convenience alternative to `DrawableGroup<2, T>`. See @ref Drawable for more information. @see @ref DrawableGroup2D, @ref BasicDrawableGroup3D */ @@ -228,7 +228,7 @@ typedef BasicDrawableGroup2D DrawableGroup2D; /** @brief Group of drawables for three-dimensional scenes -Convenience alternative to %DrawableGroup<3, T>. See @ref Drawable for +Convenience alternative to `DrawableGroup<3, T>`. See @ref Drawable for more information. @see @ref DrawableGroup3D, @ref BasicDrawableGroup2D */ diff --git a/src/Magnum/SceneGraph/DualComplexTransformation.h b/src/Magnum/SceneGraph/DualComplexTransformation.h index 9d9659374..9446a8c27 100644 --- a/src/Magnum/SceneGraph/DualComplexTransformation.h +++ b/src/Magnum/SceneGraph/DualComplexTransformation.h @@ -48,7 +48,7 @@ template class BasicDualComplexTransformation: public AbstractBasicTran /** @brief Underlying transformation type */ typedef Math::DualComplex DataType; - /** @brief %Object transformation */ + /** @brief Object transformation */ Math::DualComplex transformation() const { return _transformation; } /** diff --git a/src/Magnum/SceneGraph/DualQuaternionTransformation.h b/src/Magnum/SceneGraph/DualQuaternionTransformation.h index 376e05978..4307b4d1d 100644 --- a/src/Magnum/SceneGraph/DualQuaternionTransformation.h +++ b/src/Magnum/SceneGraph/DualQuaternionTransformation.h @@ -48,7 +48,7 @@ template class BasicDualQuaternionTransformation: public AbstractBasicT /** @brief Underlying transformation type */ typedef Math::DualQuaternion DataType; - /** @brief %Object transformation */ + /** @brief Object transformation */ Math::DualQuaternion transformation() const { return _transformation; } /** diff --git a/src/Magnum/SceneGraph/FeatureGroup.h b/src/Magnum/SceneGraph/FeatureGroup.h index a18530742..a4ee47d58 100644 --- a/src/Magnum/SceneGraph/FeatureGroup.h +++ b/src/Magnum/SceneGraph/FeatureGroup.h @@ -116,7 +116,7 @@ template class FeatureGroup: pub /** @brief Base feature group for two-dimensional scenes -Convenience alternative to %FeatureGroup<2, Feature, T>. See +Convenience alternative to `FeatureGroup<2, Feature, T>`. See @ref AbstractGroupedFeature for more information. @see @ref FeatureGroup2D, @ref BasicFeatureGroup3D */ @@ -125,7 +125,7 @@ template using BasicFeatureGroup2D = FeatureGroup<2, Fea /** @brief Base feature group for two-dimensional float scenes -Convenience alternative to %BasicFeatureGroup2D. See +Convenience alternative to `BasicFeatureGroup2D`. See @ref AbstractGroupedFeature for more information. @see @ref FeatureGroup3D */ @@ -134,7 +134,7 @@ template using FeatureGroup2D = BasicFeatureGroup2D%FeatureGroup<3, Feature, T>. See +Convenience alternative to `FeatureGroup<3, Feature, T>`. See @ref AbstractGroupedFeature for more information. @see @ref FeatureGroup3D, @ref BasicFeatureGroup2D */ @@ -143,7 +143,7 @@ template using BasicFeatureGroup3D = FeatureGroup<3, Fea /** @brief Base feature group for three-dimensional float scenes -Convenience alternative to %BasicFeatureGroup3D. See +Convenience alternative to `BasicFeatureGroup3D`. See @ref AbstractGroupedFeature for more information. @see @ref FeatureGroup2D */ diff --git a/src/Magnum/SceneGraph/MatrixTransformation2D.h b/src/Magnum/SceneGraph/MatrixTransformation2D.h index 50291e3f6..29d26f78d 100644 --- a/src/Magnum/SceneGraph/MatrixTransformation2D.h +++ b/src/Magnum/SceneGraph/MatrixTransformation2D.h @@ -47,7 +47,7 @@ template class BasicMatrixTransformation2D: public AbstractBasicTransla /** @brief Underlying transformation type */ typedef Math::Matrix3 DataType; - /** @brief %Object transformation */ + /** @brief Object transformation */ Math::Matrix3 transformation() const { return _transformation; } /** diff --git a/src/Magnum/SceneGraph/MatrixTransformation3D.h b/src/Magnum/SceneGraph/MatrixTransformation3D.h index fee965547..ccbc13302 100644 --- a/src/Magnum/SceneGraph/MatrixTransformation3D.h +++ b/src/Magnum/SceneGraph/MatrixTransformation3D.h @@ -46,7 +46,7 @@ template class BasicMatrixTransformation3D: public AbstractBasicTransla /** @brief Underlying transformation type */ typedef Math::Matrix4 DataType; - /** @brief %Object transformation */ + /** @brief Object transformation */ Math::Matrix4 transformation() const { return _transformation; } /** diff --git a/src/Magnum/SceneGraph/Object.h b/src/Magnum/SceneGraph/Object.h index bfd834b1e..e901bb847 100644 --- a/src/Magnum/SceneGraph/Object.h +++ b/src/Magnum/SceneGraph/Object.h @@ -50,7 +50,7 @@ namespace Implementation { } /** -@brief %Object +@brief Object Base of scene graph. Contains specific transformation implementation, takes care of parent/children relationship and contains features. See @ref scenegraph diff --git a/src/Magnum/SceneGraph/RigidMatrixTransformation2D.h b/src/Magnum/SceneGraph/RigidMatrixTransformation2D.h index c275dea30..ad74708a6 100644 --- a/src/Magnum/SceneGraph/RigidMatrixTransformation2D.h +++ b/src/Magnum/SceneGraph/RigidMatrixTransformation2D.h @@ -51,7 +51,7 @@ template class BasicRigidMatrixTransformation2D: public AbstractBasicTr /** @brief Underlying transformation type */ typedef Math::Matrix3 DataType; - /** @brief %Object transformation */ + /** @brief Object transformation */ Math::Matrix3 transformation() const { return _transformation; } /** diff --git a/src/Magnum/SceneGraph/RigidMatrixTransformation3D.h b/src/Magnum/SceneGraph/RigidMatrixTransformation3D.h index 1ce512647..a9b1bda7b 100644 --- a/src/Magnum/SceneGraph/RigidMatrixTransformation3D.h +++ b/src/Magnum/SceneGraph/RigidMatrixTransformation3D.h @@ -50,7 +50,7 @@ template class BasicRigidMatrixTransformation3D: public AbstractBasicTr /** @brief Underlying transformation type */ typedef Math::Matrix4 DataType; - /** @brief %Object transformation */ + /** @brief Object transformation */ Math::Matrix4 transformation() const { return _transformation; } /** diff --git a/src/Magnum/SceneGraph/Scene.h b/src/Magnum/SceneGraph/Scene.h index 2153fa1e6..ebcdc0d8a 100644 --- a/src/Magnum/SceneGraph/Scene.h +++ b/src/Magnum/SceneGraph/Scene.h @@ -34,7 +34,7 @@ namespace Magnum { namespace SceneGraph { /** -@brief %Scene +@brief Scene Basically @ref Object which cannot have parent or non-default transformation. See @ref scenegraph for introduction. diff --git a/src/Magnum/SceneGraph/TranslationTransformation.h b/src/Magnum/SceneGraph/TranslationTransformation.h index 097252cb2..ae80b04e7 100644 --- a/src/Magnum/SceneGraph/TranslationTransformation.h +++ b/src/Magnum/SceneGraph/TranslationTransformation.h @@ -62,7 +62,7 @@ class TranslationTransformation: public AbstractTranslation DataType; - /** @brief %Object transformation */ + /** @brief Object transformation */ VectorTypeFor transformation() const { return _transformation; } /** @@ -129,7 +129,7 @@ class TranslationTransformation: public AbstractTranslation%TranslationTransformation<2, T, TranslationType>. +Convenience alternative to `TranslationTransformation<2, T, TranslationType>`. See @ref TranslationTransformation for more information. @see @ref TranslationTransformation2D, @ref BasicTranslationTransformation3D */ @@ -150,7 +150,7 @@ typedef BasicTranslationTransformation2D TranslationTransformation2D; /** @brief Base transformation for three-dimensional scenes supporting translation -Convenience alternative to %TranslationTransformation<3, T, TranslationType>. +Convenience alternative to `TranslationTransformation<3, T, TranslationType>`. See @ref TranslationTransformation for more information. @see @ref TranslationTransformation3D, @ref BasicTranslationTransformation2D */