From 73a4e9b18ac74281f9ccd0e348e1d419c494eda2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sat, 16 Mar 2013 18:37:57 +0100 Subject: [PATCH] Math: doc++ --- src/Math/Quaternion.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Math/Quaternion.h b/src/Math/Quaternion.h index 217c852cf..2d373eae1 100644 --- a/src/Math/Quaternion.h +++ b/src/Math/Quaternion.h @@ -247,7 +247,8 @@ template class Quaternion { * Expects that the quaternion is normalized. @f[ * \theta = 2 \cdot acos q_S * @f] - * @see rotationAxis(), rotation(), DualQuaternion::rotationAngle() + * @see isNormalized(), rotationAxis(), rotation(), + * DualQuaternion::rotationAngle() */ inline Rad rotationAngle() const { CORRADE_ASSERT(isNormalized(), @@ -264,7 +265,7 @@ template class Quaternion { * default-constructed quaternion. @f[ * \boldsymbol a = \frac{\boldsymbol q_V}{\sqrt{1 - q_S^2}} * @f] - * @see rotationAngle(), rotation() + * @see isNormalized(), rotationAngle(), rotation() */ inline Vector3 rotationAxis() const { CORRADE_ASSERT(isNormalized(),