From 18133332777825bbba09c87fe22995f7d6f6084b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Mon, 28 Apr 2025 13:09:27 +0200 Subject: [PATCH] Math: doc++ --- src/Magnum/Math/Complex.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Magnum/Math/Complex.h b/src/Magnum/Math/Complex.h index 2a57365af..305d62317 100644 --- a/src/Magnum/Math/Complex.h +++ b/src/Magnum/Math/Complex.h @@ -260,7 +260,7 @@ template class Complex { constexpr T imaginary() const { return _imaginary; } /**< @overload */ /** - * @brief Convert a complex number to vector + * @brief Convert a complex number to a vector * * @f[ * \boldsymbol v = \begin{pmatrix} a \\ b \end{pmatrix} @@ -541,10 +541,10 @@ template class Complex { } /** - * @brief Rotate a vector with the complex number + * @brief Rotate a vector with a complex number * * @f[ - * v' = c v = c (v_x + iv_y) + * \boldsymbol{v'} = c \boldsymbol{v} = c (v_x + iv_y) * @f] * @see @ref Complex(const Vector2&), @ref operator Vector2(), * @ref Matrix3::transformVector()