From d0fe15737ad89d6d2f8c7ac5b735a98fa8f19a4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 24 Feb 2013 18:15:12 +0100 Subject: [PATCH] Math: mark complex conjugate with asterisk, not overline. Makes it consistent with quaternion conjugate and less confusing for future DualComplex implementation (as dual conjugate is with overline too). --- src/Math/Complex.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Math/Complex.h b/src/Math/Complex.h index 4d46217b1..64773b217 100644 --- a/src/Math/Complex.h +++ b/src/Math/Complex.h @@ -306,7 +306,7 @@ template class Complex { * @brief Conjugated complex number * * @f[ - * \overline c = a - ib + * c^* = a - ib * @f] */ inline Complex conjugated() const { @@ -318,7 +318,7 @@ template class Complex { * * See invertedNormalized() which is faster for normalized * complex numbers. @f[ - * c^{-1} = \frac{\overline c}{|c|^2} = \frac{\overline c}{c \cdot c} + * c^{-1} = \frac{c^*}{|c|^2} = \frac{c^*}{c \cdot c} * @f] */ inline Complex inverted() const { @@ -330,7 +330,7 @@ template class Complex { * * Equivalent to conjugated(). Expects that the complex number is * normalized. @f[ - * c^{-1} = \frac{\overline c}{c \overline c} = \frac{\overline c}{a^2 + b^2} = \overline c + * c^{-1} = \frac{c^*}{c \cdot c} = c^* * @f] * @see inverted() */