From 5c4b03c53e0c84121fd6ea1c2a60eb266c27cd69 Mon Sep 17 00:00:00 2001 From: Kyle Vedder Date: Thu, 18 Jul 2019 18:12:14 +0000 Subject: [PATCH] Added leading asterisk for Doxygen to consume as it was removing asterisk intended to be part of the code. --- doc/TutorialGeometry.dox | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/TutorialGeometry.dox b/doc/TutorialGeometry.dox index 2e1420f98..723f4dbce 100644 --- a/doc/TutorialGeometry.dox +++ b/doc/TutorialGeometry.dox @@ -232,8 +232,8 @@ On the other hand, since there exist 24 different conventions, they are pretty c to create a rotation matrix according to the 2-1-2 convention.\code Matrix3f m; m = AngleAxisf(angle1, Vector3f::UnitZ()) - * AngleAxisf(angle2, Vector3f::UnitY()) - * AngleAxisf(angle3, Vector3f::UnitZ()); + * * AngleAxisf(angle2, Vector3f::UnitY()) + * * AngleAxisf(angle3, Vector3f::UnitZ()); \endcode