#ifndef Magnum_Math_Complex_h #define Magnum_Math_Complex_h /* This file is part of Magnum. Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018 Vladimír Vondruš Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /** @file * @brief Class @ref Magnum::Math::Complex, function @ref Magnum::Math::dot(), @ref Magnum::math::angle() */ #include #include #include "Magnum/Math/Matrix.h" #include "Magnum/Math/Vector2.h" namespace Magnum { namespace Math { namespace Implementation { /* No assertions fired, for internal use. Not private member because used from outside the class. */ template constexpr static Complex complexFromMatrix(const Matrix2x2& matrix) { return {matrix[0][0], matrix[0][1]}; } template struct ComplexConverter; } /** @relatesalso Complex @brief Dot product of two complex numbers @f[ c_0 \cdot c_1 = a_0 a_1 + b_0 b_1 @f] @see @ref Complex::dot() const */ template inline T dot(const Complex& a, const Complex& b) { return a.real()*b.real() + a.imaginary()*b.imaginary(); } /** @relatesalso Complex @brief Angle between normalized complex numbers Expects that both complex numbers are normalized. @f[ \theta = acos \left( \frac{Re(c_0 \cdot c_1))}{|c_0| |c_1|} \right) = acos (a_0 a_1 + b_0 b_1) @f] @see @ref Complex::isNormalized(), @ref angle(const Quaternion&, const Quaternion&), @ref angle(const Vector&, const Vector&) */ template inline Rad angle(const Complex& normalizedA, const Complex& normalizedB) { CORRADE_ASSERT(normalizedA.isNormalized() && normalizedB.isNormalized(), "Math::angle(): complex numbers must be normalized", {}); return Rad(std::acos(dot(normalizedA, normalizedB))); } /** @brief Complex number @tparam T Data type Represents 2D rotation. See @ref transformations for brief introduction. @see @ref Magnum::Complex, @ref Magnum::Complexd, @ref Matrix3 */ template class Complex { template friend class Complex; public: typedef T Type; /**< @brief Underlying data type */ /** * @brief Rotation complex number * @param angle Rotation angle (counterclockwise) * * @f[ * c = cos \theta + i sin \theta * @f] * @see @ref angle(), @ref Matrix3::rotation(), * @ref Quaternion::rotation() */ static Complex rotation(Rad angle) { return {std::cos(T(angle)), std::sin(T(angle))}; } /** * @brief Create complex number from rotation matrix * * Expects that the matrix is orthogonal (i.e. pure rotation). * @see @ref toMatrix(), @ref DualComplex::fromMatrix(), * @ref Matrix::isOrthogonal() */ static Complex fromMatrix(const Matrix2x2& matrix) { CORRADE_ASSERT(matrix.isOrthogonal(), "Math::Complex::fromMatrix(): the matrix is not orthogonal", {}); return Implementation::complexFromMatrix(matrix); } /** * @brief Default constructor * * Constructs unit complex number. @f[ * c = 1 + i0 * @f] */ constexpr /*implicit*/ Complex(IdentityInitT = IdentityInit) noexcept: _real(T(1)), _imaginary(T(0)) {} /** @brief Construct zero-initialized complex number */ constexpr explicit Complex(ZeroInitT) noexcept: _real{}, _imaginary{} {} /** @brief Construct without initializing the contents */ explicit Complex(NoInitT) noexcept {} /** * @brief Construct complex number from real and imaginary part * * @f[ * c = a + ib * @f] */ constexpr /*implicit*/ Complex(T real, T imaginary) noexcept: _real(real), _imaginary(imaginary) {} /** * @brief Construct complex number from vector * * To be used in transformations later. @f[ * c = v_x + iv_y * @f] * @see @ref operator Vector2(), @ref transformVector() */ constexpr explicit Complex(const Vector2& vector) noexcept: _real(vector.x()), _imaginary(vector.y()) {} /** * @brief Construct complex number from another of different type * * Performs only default casting on the values, no rounding or anything * else. */ template constexpr explicit Complex(const Complex& other) noexcept: _real{T(other._real)}, _imaginary{T(other._imaginary)} {} /** @brief Construct complex number from external representation */ template::from(std::declval()))> constexpr explicit Complex(const U& other): Complex{Implementation::ComplexConverter::from(other)} {} /** @brief Copy constructor */ constexpr /*implicit*/ Complex(const Complex&) noexcept = default; /** @brief Convert complex number to external representation */ template::to(std::declval>()))> constexpr explicit operator U() const { return Implementation::ComplexConverter::to(*this); } /** @brief Equality comparison */ bool operator==(const Complex& other) const { return TypeTraits::equals(_real, other._real) && TypeTraits::equals(_imaginary, other._imaginary); } /** @brief Non-equality comparison */ bool operator!=(const Complex& other) const { return !operator==(other); } /** * @brief Whether the complex number is normalized * * Complex number is normalized if it has unit length: @f[ * |c \cdot c - 1| < 2 \epsilon + \epsilon^2 \cong 2 \epsilon * @f] * @see @ref dot(), @ref normalized() */ bool isNormalized() const { return Implementation::isNormalizedSquared(dot()); } /** @brief Real part */ T& real() { return _real; } constexpr T real() const { return _real; } /**< @overload */ /** @brief Imaginary part */ T& imaginary() { return _imaginary; } constexpr T imaginary() const { return _imaginary; } /**< @overload */ /** * @brief Convert complex number to vector * * @f[ * \boldsymbol v = \begin{pmatrix} a \\ b \end{pmatrix} * @f] */ constexpr explicit operator Vector2() const { return {_real, _imaginary}; } /** * @brief Rotation angle of complex number * * @f[ * \theta = atan2(b, a) * @f] * @see @ref rotation() */ Rad angle() const { return Rad(std::atan2(_imaginary, _real)); } /** * @brief Convert complex number to rotation matrix * * @f[ * M = \begin{pmatrix} * a & -b \\ * b & a * \end{pmatrix} * @f] * @see @ref fromMatrix(), @ref DualComplex::toMatrix(), * @ref Matrix3::from(const Matrix2x2&, const Vector2&) */ Matrix2x2 toMatrix() const { return {Vector<2, T>(_real, _imaginary), Vector<2, T>(-_imaginary, _real)}; } /** * @brief Add complex number and assign * * The computation is done in-place. @f[ * c_0 + c_1 = (a_0 + a_1) + i(b_0 + b_1) * @f] */ Complex& operator+=(const Complex& other) { _real += other._real; _imaginary += other._imaginary; return *this; } /** * @brief Add complex number * * @see @ref operator+=(const Complex&) */ Complex operator+(const Complex& other) const { return Complex(*this) += other; } /** * @brief Negated complex number * * @f[ * -c = -a -ib * @f] */ Complex operator-() const { return {-_real, -_imaginary}; } /** * @brief Subtract complex number and assign * * The computation is done in-place. @f[ * c_0 - c_1 = (a_0 - a_1) + i(b_0 - b_1) * @f] */ Complex& operator-=(const Complex& other) { _real -= other._real; _imaginary -= other._imaginary; return *this; } /** * @brief Subtract complex number * * @see @ref operator-=(const Complex&) */ Complex operator-(const Complex& other) const { return Complex(*this) -= other; } /** * @brief Multiply with scalar and assign * * The computation is done in-place. @f[ * c \cdot t = ta + itb * @f] */ Complex& operator*=(T scalar) { _real *= scalar; _imaginary *= scalar; return *this; } /** * @brief Multiply with scalar * * @see @ref operator*=(T) */ Complex operator*(T scalar) const { return Complex(*this) *= scalar; } /** * @brief Divide with scalar and assign * * The computation is done in-place. @f[ * \frac c t = \frac a t + i \frac b t * @f] */ Complex& operator/=(T scalar) { _real /= scalar; _imaginary /= scalar; return *this; } /** * @brief Divide with scalar * * @see @ref operator/=(T) */ Complex operator/(T scalar) const { return Complex(*this) /= scalar; } /** * @brief Multiply with complex number * * @f[ * c_0 c_1 = (a_0 + ib_0)(a_1 + ib_1) = (a_0 a_1 - b_0 b_1) + i(a_1 b_0 + a_0 b_1) * @f] */ Complex operator*(const Complex& other) const { return {_real*other._real - _imaginary*other._imaginary, _imaginary*other._real + _real*other._imaginary}; } /** * @brief Dot product of the complex number * * Should be used instead of @ref length() for comparing complex number * length with other values, because it doesn't compute the square * root. @f[ * c \cdot c = a^2 + b^2 * @f] * @see @ref dot(const Complex&, const Complex&), @ref isNormalized() */ T dot() const { return Math::dot(*this, *this); } /** * @brief Complex number length * * See also @ref dot() const which is faster for comparing length with * other values. @f[ * |c| = \sqrt{c \cdot c} * @f] * @see @ref isNormalized() */ T length() const { return std::hypot(_real, _imaginary); } /** * @brief Normalized complex number (of unit length) * * @see @ref isNormalized() */ Complex normalized() const { return (*this)/length(); } /** * @brief Conjugated complex number * * @f[ * c^* = a - ib * @f] */ Complex conjugated() const { return {_real, -_imaginary}; } /** * @brief Inverted complex number * * See @ref invertedNormalized() which is faster for normalized * complex numbers. @f[ * c^{-1} = \frac{c^*}{|c|^2} = \frac{c^*}{c \cdot c} * @f] */ Complex inverted() const { return conjugated()/dot(); } /** * @brief Inverted normalized complex number * * Equivalent to @ref conjugated(). Expects that the complex number is * normalized. @f[ * c^{-1} = \frac{c^*}{c \cdot c} = c^* * @f] * @see @ref isNormalized(), @ref inverted() */ Complex invertedNormalized() const { CORRADE_ASSERT(isNormalized(), "Math::Complex::invertedNormalized(): complex number must be normalized", {}); return conjugated(); } /** * @brief Rotate vector with complex number * * @f[ * v' = c v = c (v_x + iv_y) * @f] * @see @ref Complex(const Vector2&), @ref operator Vector2(), * @ref Matrix3::transformVector() */ Vector2 transformVector(const Vector2& vector) const { return Vector2((*this)*Complex(vector)); } private: T _real, _imaginary; }; /** @relates Complex @brief Multiply scalar with complex Same as @ref Complex::operator*(T) const. */ template inline Complex operator*(T scalar, const Complex& complex) { return complex*scalar; } /** @relates Complex @brief Divide complex with number and invert @f[ \frac t c = \frac t a + i \frac t b @f] @see @ref Complex::operator/() */ template inline Complex operator/(T scalar, const Complex& complex) { return {scalar/complex.real(), scalar/complex.imaginary()}; } /** @relatesalso Complex @brief Linear interpolation of two complex numbers @param normalizedA First complex number @param normalizedB Second complex number @param t Interpolation phase (from range @f$ [0; 1] @f$) Expects that both complex numbers are normalized. @f[ c_{LERP} = \frac{(1 - t) c_A + t c_B}{|(1 - t) c_A + t c_B|} @f] @see @ref Complex::isNormalized(), @ref slerp(const Complex&, const Complex&, T), @ref lerp(const Quaternion&, const Quaternion&, T), @ref lerp(const T&, const T&, U), @ref lerp(const CubicHermite&, const CubicHermite&, U), @ref lerp(const CubicHermiteComplex&, const CubicHermiteComplex&, T), @ref lerp(const CubicHermiteQuaternion&, const CubicHermiteQuaternion&, T) */ template inline Complex lerp(const Complex& normalizedA, const Complex& normalizedB, T t) { CORRADE_ASSERT(normalizedA.isNormalized() && normalizedB.isNormalized(), "Math::lerp(): complex numbers must be normalized", {}); return ((T(1) - t)*normalizedA + t*normalizedB).normalized(); } /** @relatesalso Complex @brief Spherical linear interpolation of two complex numbers @param normalizedA First complex number @param normalizedB Second complex number @param t Interpolation phase (from range @f$ [0; 1] @f$) Expects that both complex numbers are normalized. If the complex numbers are the same, returns the first argument. @f[ c_{SLERP} = \frac{sin((1 - t) \theta) c_A + sin(t \theta) c_B}{sin \theta} ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ \theta = acos \left( \frac{c_A \cdot c_B}{|c_A| \cdot |c_B|} \right) = acos(c_A \cdot c_B) @f] @see @ref Complex::isNormalized(), @ref lerp(const Complex&, const Complex&, T), @ref slerp(const Quaternion&, const Quaternion&, T) */ template inline Complex slerp(const Complex& normalizedA, const Complex& normalizedB, T t) { CORRADE_ASSERT(normalizedA.isNormalized() && normalizedB.isNormalized(), "Math::slerp(): complex numbers must be normalized", {}); const T cosAngle = dot(normalizedA, normalizedB); /* Avoid division by zero */ if(std::abs(cosAngle) >= T(1)) return Complex{normalizedA}; /** @todo couldn't this be done somewhat simpler? */ const T a = std::acos(cosAngle); return (std::sin((T(1) - t)*a)*normalizedA + std::sin(t*a)*normalizedB)/std::sin(a); } /** @debugoperator{Complex} */ template Corrade::Utility::Debug& operator<<(Corrade::Utility::Debug& debug, const Complex& value) { return debug << "Complex(" << Corrade::Utility::Debug::nospace << value.real() << Corrade::Utility::Debug::nospace << "," << value.imaginary() << Corrade::Utility::Debug::nospace << ")"; } /* Explicit instantiation for commonly used types */ #ifndef DOXYGEN_GENERATING_OUTPUT extern template MAGNUM_EXPORT Corrade::Utility::Debug& operator<<(Corrade::Utility::Debug&, const Complex&); extern template MAGNUM_EXPORT Corrade::Utility::Debug& operator<<(Corrade::Utility::Debug&, const Complex&); #endif }} namespace Corrade { namespace Utility { /** @configurationvalue{Magnum::Math::Complex} */ template struct ConfigurationValue> { ConfigurationValue() = delete; /** @brief Writes elements separated with spaces */ static std::string toString(const Magnum::Math::Complex& value, ConfigurationValueFlags flags) { return ConfigurationValue>::toString(reinterpret_cast&>(value), flags); } /** @brief Reads elements separated with whitespace */ static Magnum::Math::Complex fromString(const std::string& stringValue, ConfigurationValueFlags flags) { const Magnum::Math::Vector<2, T> value = ConfigurationValue>::fromString(stringValue, flags); return reinterpret_cast&>(value); } }; /* No explicit instantiation needed, as Vector<2, T> is instantiated already */ }} #endif