Browse Source

Math: doc++

pull/674/head
Vladimír Vondruš 1 year ago
parent
commit
1813333277
  1. 6
      src/Magnum/Math/Complex.h

6
src/Magnum/Math/Complex.h

@ -260,7 +260,7 @@ template<class T> 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 T> 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<T>&), @ref operator Vector2<T>(),
* @ref Matrix3::transformVector()

Loading…
Cancel
Save