#ifndef Magnum_Math_DualComplex_h #define Magnum_Math_DualComplex_h /* This file is part of Magnum. Copyright © 2010, 2011, 2012, 2013, 2014, 2015 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::DualComplex */ #include "Magnum/Math/Complex.h" #include "Magnum/Math/Dual.h" #include "Magnum/Math/Matrix3.h" namespace Magnum { namespace Math { namespace Implementation { template struct DualComplexConverter; } /** @brief Dual complex number @tparam T Underlying data type Represents 2D rotation and translation. See @ref transformations for brief introduction. @see @ref Magnum::DualComplex, @ref Magnum::DualComplexd, @ref Dual, @ref Complex, @ref Matrix3 @todo Can this be done similarly as in dual quaternions? It sort of works, but the math beneath is weird. */ template class DualComplex: public Dual> { public: typedef T Type; /**< @brief Underlying data type */ /** * @brief Rotation dual complex number * @param angle Rotation angle (counterclockwise) * * @f[ * \hat c = (cos \theta + i sin \theta) + \epsilon (0 + i0) * @f] * @see @ref Complex::rotation(), @ref Matrix3::rotation(), * @ref DualQuaternion::rotation() */ static DualComplex rotation(Rad angle) { return {Complex::rotation(angle), {{}, {}}}; } /** * @brief Translation dual complex number * @param vector Translation vector * * @f[ * \hat c = (0 + i1) + \epsilon (v_x + iv_y) * @f] * @see @ref translation() const, @ref Matrix3::translation(const Vector2&), * @ref DualQuaternion::translation(), @ref Vector2::xAxis(), * @ref Vector2::yAxis() */ static DualComplex translation(const Vector2& vector) { return {{}, {vector.x(), vector.y()}}; } /** * @brief Create dual complex number from rotation matrix * * Expects that the matrix represents rigid transformation. * @see @ref toMatrix(), @ref Complex::fromMatrix(), * @ref Matrix3::isRigidTransformation() */ static DualComplex fromMatrix(const Matrix3& matrix) { CORRADE_ASSERT(matrix.isRigidTransformation(), "Math::DualComplex::fromMatrix(): the matrix doesn't represent rigid transformation", {}); return {Implementation::complexFromMatrix(matrix.rotationScaling()), Complex(matrix.translation())}; } /** * @brief Default constructor * * Creates unit dual complex number. @f[ * \hat c = (0 + i1) + \epsilon (0 + i0) * @f] */ #ifdef DOXYGEN_GENERATING_OUTPUT constexpr /*implicit*/ DualComplex(IdentityInitT = IdentityInit); #else constexpr /*implicit*/ DualComplex(IdentityInitT = IdentityInit): Dual>({}, {T(0), T(0)}) {} #endif /** * @brief Construct dual complex number from real and dual part * * @f[ * \hat c = c_0 + \epsilon c_\epsilon * @f] */ constexpr /*implicit*/ DualComplex(const Complex& real, const Complex& dual = Complex(T(0), T(0))): Dual>(real, dual) {} /** * @brief Construct dual complex number from vector * * To be used in transformations later. @f[ * \hat c = (0 + i1) + \epsilon(v_x + iv_y) * @f] */ #ifdef DOXYGEN_GENERATING_OUTPUT constexpr explicit DualComplex(const Vector2& vector); #else constexpr explicit DualComplex(const Vector2& vector): Dual>({}, Complex(vector)) {} #endif /** @brief Construct dual complex number from external representation */ template::from(std::declval()))> constexpr explicit DualComplex(const U& other): DualComplex{Implementation::DualComplexConverter::from(other)} {} /** @brief Copy constructor */ constexpr DualComplex(const Dual>& other): Dual>(other) {} /** @brief Convert dual complex number to external representation */ template::to(std::declval>()))> constexpr explicit operator U() const { return Implementation::DualComplexConverter::to(*this); } /** * @brief Whether the dual complex number is normalized * * Dual complex number is normalized if its real part has unit length: @f[ * |c_0|^2 = |c_0| = 1 * @f] * @see @ref Complex::dot(), @ref normalized() * @todoc Improve the equation as in Complex::isNormalized() */ bool isNormalized() const { return Implementation::isNormalizedSquared(lengthSquared()); } /** * @brief Rotation part of dual complex number * * @see @ref Complex::angle() */ constexpr Complex rotation() const { return Dual>::real(); } /** * @brief Translation part of dual complex number * * @f[ * \boldsymbol a = (c_\epsilon c_0^*) * @f] * @see @ref translation(const Vector2&) */ Vector2 translation() const { return Vector2(Dual>::dual()); } /** * @brief Convert dual complex number to transformation matrix * * @see @ref fromMatrix(), @ref Complex::toMatrix() */ Matrix3 toMatrix() const { return Matrix3::from(Dual>::real().toMatrix(), translation()); } /** * @brief Multipy with dual complex number * * @f[ * \hat a \hat b = a_0 b_0 + \epsilon (a_0 b_\epsilon + a_\epsilon) * @f] * @todo can this be done similarly to dual quaternions? */ DualComplex operator*(const DualComplex& other) const { return {Dual>::real()*other.real(), Dual>::real()*other.dual() + Dual>::dual()}; } /** * @brief Complex-conjugated dual complex number * * @f[ * \hat c^* = c^*_0 + c^*_\epsilon * @f] * @see @ref dualConjugated(), @ref conjugated(), * @ref Complex::conjugated() */ DualComplex complexConjugated() const { return {Dual>::real().conjugated(), Dual>::dual().conjugated()}; } /** * @brief Dual-conjugated dual complex number * * @f[ * \overline{\hat c} = c_0 - \epsilon c_\epsilon * @f] * @see @ref complexConjugated(), @ref conjugated(), * @ref Dual::conjugated() */ DualComplex dualConjugated() const { return Dual>::conjugated(); } /** * @brief Conjugated dual complex number * * Both complex and dual conjugation. @f[ * \overline{\hat c^*} = c^*_0 - \epsilon c^*_\epsilon = c^*_0 + \epsilon(-a_\epsilon + ib_\epsilon) * @f] * @see @ref complexConjugated(), @ref dualConjugated(), * @ref Complex::conjugated(), @ref Dual::conjugated() */ DualComplex conjugated() const { return {Dual>::real().conjugated(), {-Dual>::dual().real(), Dual>::dual().imaginary()}}; } /** * @brief Complex number length squared * * Should be used instead of length() for comparing complex number * length with other values, because it doesn't compute the square root. @f[ * |\hat c|^2 = c_0 \cdot c_0 = |c_0|^2 * @f] * @todo Can this be done similarly to dual quaternins? */ T lengthSquared() const { return Dual>::real().dot(); } /** * @brief Dual quaternion length * * See lengthSquared() which is faster for comparing length with other * values. @f[ * |\hat c| = \sqrt{c_0 \cdot c_0} = |c_0| * @f] * @todo can this be done similarly to dual quaternions? */ T length() const { return Dual>::real().length(); } /** * @brief Normalized dual complex number (of unit length) * * @f[ * c' = \frac{c_0}{|c_0|} * @f] * @see @ref isNormalized() * @todo can this be done similarly to dual quaternions? */ DualComplex normalized() const { return {Dual>::real()/length(), Dual>::dual()}; } /** * @brief Inverted dual complex number * * See invertedNormalized() which is faster for normalized dual complex * numbers. @f[ * \hat c^{-1} = c_0^{-1} - \epsilon c_\epsilon * @f] * @todo can this be done similarly to dual quaternions? */ DualComplex inverted() const { return DualComplex(Dual>::real().inverted(), {{}, {}})*DualComplex({}, -Dual>::dual()); } /** * @brief Inverted normalized dual complex number * * Expects that the complex number is normalized. @f[ * \hat c^{-1} = c_0^{-1} - \epsilon c_\epsilon = c_0^* - \epsilon c_\epsilon * @f] * @see @ref isNormalized(), @ref inverted() * @todo can this be done similarly to dual quaternions? */ DualComplex invertedNormalized() const { return DualComplex(Dual>::real().invertedNormalized(), {{}, {}})*DualComplex({}, -Dual>::dual()); } /** * @brief Rotate and translate point with dual complex number * * See transformPointNormalized(), which is faster for normalized dual * complex number. @f[ * v' = \hat c v = \hat c ((0 + i) + \epsilon(v_x + iv_y)) * @f] * @see @ref DualComplex(const Vector2&), @ref dual(), * @ref Matrix3::transformPoint(), @ref Complex::transformVector(), * @ref DualQuaternion::transformPoint() */ Vector2 transformPoint(const Vector2& vector) const { return Vector2(((*this)*DualComplex(vector)).dual()); } /* Verbatim copy of DUAL_SUBCLASS_IMPLEMENTATION(), as we need to hide Dual's operator*() and operator/() */ #ifndef DOXYGEN_GENERATING_OUTPUT DualComplex operator-() const { return Dual>::operator-(); } DualComplex& operator+=(const Dual>& other) { Dual>::operator+=(other); return *this; } DualComplex operator+(const Dual>& other) const { return Dual>::operator+(other); } DualComplex& operator-=(const Dual>& other) { Dual>::operator-=(other); return *this; } DualComplex operator-(const Dual>& other) const { return Dual>::operator-(other); } #endif private: /* Just to be sure nobody uses this, as it wouldn't probably work with our operator*() */ using Dual>::operator*; using Dual>::operator/; }; /** @debugoperator{Magnum::Math::DualQuaternion} */ template Corrade::Utility::Debug operator<<(Corrade::Utility::Debug debug, const DualComplex& value) { debug << "DualComplex({"; debug.setFlag(Corrade::Utility::Debug::SpaceAfterEachValue, false); debug << value.real().real() << ", " << value.real().imaginary() << "}, {" << value.dual().real() << ", " << value.dual().imaginary() << "})"; debug.setFlag(Corrade::Utility::Debug::SpaceAfterEachValue, true); return debug; } /* Explicit instantiation for commonly used types */ #ifndef DOXYGEN_GENERATING_OUTPUT extern template Corrade::Utility::Debug MAGNUM_EXPORT operator<<(Corrade::Utility::Debug, const DualComplex&); #ifndef MAGNUM_TARGET_GLES extern template Corrade::Utility::Debug MAGNUM_EXPORT operator<<(Corrade::Utility::Debug, const DualComplex&); #endif #endif }} #endif