From c902d4cd6e7686874d3effe9efe5b04276c3bf5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Wed, 1 Aug 2018 23:10:03 +0200 Subject: [PATCH] Math: fix messed up math equations. Thanks to @uzername for reporting this. --- src/Magnum/Math/Angle.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Magnum/Math/Angle.h b/src/Magnum/Math/Angle.h index 5d9df0db9..e5bb0cabb 100644 --- a/src/Magnum/Math/Angle.h +++ b/src/Magnum/Math/Angle.h @@ -126,7 +126,7 @@ template class Deg: public Unit { * @brief Construct degrees from radians * * Performs conversion from radians to degrees, i.e.: @f[ - * deg = 180 \frac {rad} \pi + * deg = rad \frac{180}{\pi} * @f] * @m_keyword{degrees(),GLSL degrees(),} */ @@ -198,7 +198,7 @@ template class Rad: public Unit { * @brief Construct radians from degrees * * Performs conversion from degrees to radians, i.e.: @f[ - * rad = deg \frac \pi 180 + * rad = deg \frac{\pi}{180} * @f] * @m_keyword{radians(),GLSL radians(),} */