13#ifndef ML_QUATERNION_H
14#define ML_QUATERNION_H
93 qx(0), qy(0), qz(0), qw(0) { }
98 qx(0), qy(0), qz(0), qw(d)
106 template <
typename DT2>
109 qx =
static_cast<DT
>(
q2.qx);
110 qy =
static_cast<DT
>(
q2.qy);
111 qz =
static_cast<DT
>(
q2.qz);
112 qw =
static_cast<DT
>(
q2.qw);
154 qx(v[0]), qy(v[1]), qz(v[2]), qw(w)
213 inline void set(
const DT x,
const DT y,
const DT z,
const DT w)
234 printTemplateError(
"TQuaternion::getAsMat4() const, quaternion is not convertible to 4x4 matrix",
236 "Returning Quaterion");
258 const DT
qxqx = qx*qx;
259 const DT
qyqy = qy*qy;
260 const DT
qzqz = qz*qz;
262 const DT
qxqy = qx*qy;
263 const DT
qxqz = qx*qz;
264 const DT
qxqw = qx*qw;
266 const DT
qyqz = qy*qz;
267 const DT
qyqw = qy*qw;
269 const DT
qzqw = qz*qw;
376 qx/=d; qy/=d; qz/=d; qw/=d;
412 b.
qy != 0 ? qy/b.
qy : qy,
413 b.
qz != 0 ? qz/b.
qz : qz,
414 b.
qw != 0 ? qw/b.
qw : qw) :
451 qw*p.
qw - qx*p.
qx - qy*p.
qy - qz*p.
qz); }
480 "Returning unchanged quaternion");
516 inline DT
norm()
const {
return qx*qx + qy*qy + qz*qz + qw*qw; }
521 inline DT
norm2()
const {
return static_cast<DT
>(::sqrt(qx*qx + qy*qy + qz*qz + qw*qw)); }
540 printTemplateError(
"TQuaternion::normalize() const, quaternion can not be normalized",
542 "Returning default quaternion");
575 "Returning default quaternion");
598 const DT
absVal = absoluteValue();
632 "Returning default quaternion");
641 retVal = conjugate().mult(1/
n);
657 const DT
n2 = norm2();
658 const DT
lqv = qv().length();
663 printTemplateError(
"TQuaternion::sqrt() const, sqrt of quaternion cannot be calculated",
665 "Returning default quaternion");
695 const DT
len = qv().length();
711 const DT
n2 = norm2();
712 const DT
qvLen = qv().length();
742 static_cast<DT
>(::cos(qw)) * v /
len *
static_cast<DT
>(::sinh(
len)) :
744 ::sin(qw)*::cosh(
len)
758 static_cast<DT
>(-1)*
static_cast<DT
>(::sin(qw))*qv()/
len*
static_cast<DT
>(::sinh(
len)) :
760 ::cos(qw)*::cosh(
len)
787 static_cast<DT
>(::cosh(qw))*v/
len*
static_cast<DT
>(::sin(
len)) :
789 ::sinh(qw)*::cos(
len)
803 static_cast<DT
>(::sinh(qw))*v/
len*
static_cast<DT
>(::sin(
len)) :
805 ::cosh(qw)*::cos(
len)
813 return sinh().div(cosh(),
isError);
819 return cosh().div(sinh(),
isError);
848 #define _ML_QUATERNION_CALC_CHECKED(FUNC_NAME, CALC_EXPR) \
849 TQuaternion<DT> retVal; \
851 const Tvec3<DT> &v = qv(); \
852 const DT len = v.length(); \
853 if (MLValueIs0WOM(len)){ \
855 if (isError == NULL){ \
857 printTemplateError("TQuaternion::" FUNC_NAME "() const, " FUNC_NAME \
858 " of quaternion cannot be calculated", \
860 "Returning default quaternion"); \
869 if (isError != NULL){ *isError = false; } \
870 retVal = CALC_EXPR; \
878 #define _ML_QUAT_CALC_EXP TQuaternion<DT>(-v/len,0).mult(mult(TQuaternion<DT>(-v/len,0)).arcsinh());
889 #undef _ML_QUAT_CALC_EXP
894 #define _ML_QUAT_CALC_EXP TQuaternion<DT>(-v/len,0).mult(arccosh());
900 #undef _ML_QUAT_CALC_EXP
905 #define _ML_QUAT_CALC_EXP TQuaternion<DT>(-v/len,0).mult(mult(TQuaternion<DT>(-v/len,0)).arctanh());
911 #undef _ML_QUAT_CALC_EXP
915 #undef _ML_QUATERNION_CALC_CHECKED
950#ifdef _ML_IMPLEMENT_GLOBAL_QUATERNION_OPERATORS
951#ifndef _ML_IMPLEMENT_GLOBAL_QUATERNION_FUNCS_AND_OPS_IN_GLOBAL_NAMESPACE
959template <
typename DT>
960inline ML_LA_NAMESPACE::TQuaternion<DT> operator+(DT d,
const ML_LA_NAMESPACE::TQuaternion<DT> &
q){
961 return ML_LA_NAMESPACE::TQuaternion<DT>(
q.qx,
q.qy,
q.qz,
q.qw+d);
965template <
typename DT>
966inline ML_LA_NAMESPACE::TQuaternion<DT> operator+(
const ML_LA_NAMESPACE::TQuaternion<DT> &
q, DT d){
967 return ML_LA_NAMESPACE::TQuaternion<DT>(
q.qx,
q.qy,
q.qz,
q.qw+d);
971template <
typename DT>
972inline ML_LA_NAMESPACE::TQuaternion<DT>
operator+(
const ML_LA_NAMESPACE::TQuaternion<DT> &
qa,
973 const ML_LA_NAMESPACE::TQuaternion<DT> &
qb){
974 return qa.operator+(
qb);
983template <
typename DT>
984inline ML_LA_NAMESPACE::TQuaternion<DT>
operator-(DT d,
const ML_LA_NAMESPACE::TQuaternion<DT> &
q){
985 return ML_LA_NAMESPACE::TQuaternion<DT>(-
q.qx, -
q.qy, -
q.qz, d-
q.qw);
989template <
typename DT>
990inline ML_LA_NAMESPACE::TQuaternion<DT>
operator-(
const ML_LA_NAMESPACE::TQuaternion<DT> &
q, DT d){
991 return ML_LA_NAMESPACE::TQuaternion<DT>(
q.qx,
q.qy,
q.qz,
q.qw-d);
995template <
typename DT>
996inline ML_LA_NAMESPACE::TQuaternion<DT>
operator-(
const ML_LA_NAMESPACE::TQuaternion<DT> &
qa,
997 const ML_LA_NAMESPACE::TQuaternion<DT> &
qb){
998 return qa.operator-(
qb);
1003template <
typename DT>
1004inline ML_LA_NAMESPACE::TQuaternion<DT>
operator*(DT d,
const ML_LA_NAMESPACE::TQuaternion<DT> &
q){
1009template <
typename DT>
1010inline ML_LA_NAMESPACE::TQuaternion<DT>
operator*(
const ML_LA_NAMESPACE::TQuaternion<DT> &
q, DT d){
1015template <
typename DT>
1016inline ML_LA_NAMESPACE::TQuaternion<DT>
operator*(
const ML_LA_NAMESPACE::TQuaternion<DT> &
qa,
1017 const ML_LA_NAMESPACE::TQuaternion<DT> &
qb){
1018 return qa.operator*(
qb);
1022#ifndef _ML_IMPLEMENT_GLOBAL_QUATERNION_FUNCS_AND_OPS_IN_GLOBAL_NAMESPACE
1038#ifdef _ML_IMPLEMENT_GLOBAL_QUATERNION_FUNCTIONS
1039#ifndef _ML_IMPLEMENT_GLOBAL_QUATERNION_FUNCS_AND_OPS_IN_GLOBAL_NAMESPACE
1045#ifdef _ML_IMPLEMENT_QUATERNION_SQRT
1046template <
typename DT>
1047inline ML_LA_NAMESPACE::TQuaternion<DT> sqrt (
const ML_LA_NAMESPACE::TQuaternion<DT> &
q) {
return q.sqrt(); }
1051template <
typename DT>
1052inline ML_LA_NAMESPACE::TQuaternion<DT> exp (
const ML_LA_NAMESPACE::TQuaternion<DT> &
q) {
return q.exp(); }
1055template <
typename DT>
1056inline ML_LA_NAMESPACE::TQuaternion<DT> ln (
const ML_LA_NAMESPACE::TQuaternion<DT> &
q) {
return q.ln(); }
1059template <
typename DT>
1060inline ML_LA_NAMESPACE::TQuaternion<DT> sin (
const ML_LA_NAMESPACE::TQuaternion<DT> &
q) {
return q.sin(); }
1063template <
typename DT>
1064inline ML_LA_NAMESPACE::TQuaternion<DT> cos (
const ML_LA_NAMESPACE::TQuaternion<DT> &
q) {
return q.cos(); }
1067template <
typename DT>
1068inline ML_LA_NAMESPACE::TQuaternion<DT> tan (
const ML_LA_NAMESPACE::TQuaternion<DT> &
q) {
return q.tan(); }
1071template <
typename DT>
1072inline ML_LA_NAMESPACE::TQuaternion<DT> cotan (
const ML_LA_NAMESPACE::TQuaternion<DT> &
q) {
return q.cotan(); }
1075template <
typename DT>
1076inline ML_LA_NAMESPACE::TQuaternion<DT> sinh (
const ML_LA_NAMESPACE::TQuaternion<DT> &
q) {
return q.sinh(); }
1079template <
typename DT>
1080inline ML_LA_NAMESPACE::TQuaternion<DT> cosh (
const ML_LA_NAMESPACE::TQuaternion<DT> &
q) {
return q.cosh(); }
1083template <
typename DT>
1084inline ML_LA_NAMESPACE::TQuaternion<DT> tanh (
const ML_LA_NAMESPACE::TQuaternion<DT> &
q) {
return q.tanh(); }
1087template <
typename DT>
1088inline ML_LA_NAMESPACE::TQuaternion<DT> cotanh (
const ML_LA_NAMESPACE::TQuaternion<DT> &
q) {
return q.cotanh(); }
1091template <
typename DT>
1092inline ML_LA_NAMESPACE::TQuaternion<DT> arcsinh(
const ML_LA_NAMESPACE::TQuaternion<DT> &
q) {
return q.arcsinh(); }
1095template <
typename DT>
1096inline ML_LA_NAMESPACE::TQuaternion<DT> arccosh(
const ML_LA_NAMESPACE::TQuaternion<DT> &
q) {
return q.arccosh(); }
1099template <
typename DT>
1100inline ML_LA_NAMESPACE::TQuaternion<DT> arctanh(
const ML_LA_NAMESPACE::TQuaternion<DT> &
q) {
return q.arctanh(); }
1103template <
typename DT>
1104inline ML_LA_NAMESPACE::TQuaternion<DT> arcsin (
const ML_LA_NAMESPACE::TQuaternion<DT> &
q) {
return q.arcsin(); }
1107template <
typename DT>
1108inline ML_LA_NAMESPACE::TQuaternion<DT> arccos (
const ML_LA_NAMESPACE::TQuaternion<DT> &
q) {
return q.arccos(); }
1111template <
typename DT>
1112inline ML_LA_NAMESPACE::TQuaternion<DT> arctan (
const ML_LA_NAMESPACE::TQuaternion<DT> &
q) {
return q.arctan(); }
1115#ifndef _ML_IMPLEMENT_GLOBAL_QUATERNION_FUNCS_AND_OPS_IN_GLOBAL_NAMESPACE
1129 template <
typename DT>
1130 inline ostream&
operator<<(ostream& s,
const ML_NAMESPACE::TQuaternion<DT> &v){
1131 return s <<
"(" << v.qx <<
"," << v.qy <<
"," << v.qz <<
"," << v.qw <<
")";
Template class for vector arithmetic with floating point data types.
T length() const
Returns the length of the vector, i.e. norm2().
Declaration of complex type traits:
TQuaternion< DT > arctan(bool *isError=nullptr) const
Inverse tangent, for error handling see _ML_QUATERNION_CALC_CHECKED.
TQuaternion(DT d)
Builds a quaternion from a scalar by setting all elements to 0 and qw to the scalar; use explicit to ...
TQuaternion< DT > arccos(bool *isError=nullptr) const
Inverse cosine, for error handling see _ML_QUATERNION_CALC_CHECKED.
TQuaternion< DT > euclideanMult(const TQuaternion< DT > &q) const
Euclidean product of this quaternion with another one (which is non-commutative).
DT dot(const TQuaternion< DT > &p) const
Dot product, equivalent to 4 component vector dot product.
TQuaternion< DT > arg(bool *isError=nullptr) const
Computes the quaternion argument.
TQuaternion< DT > ln() const
Computes the natural logarithm.
TQuaternion(DT x, DT y, DT z, DT w)
Creates a new TQuaternion with the DT values given.
TQuaternion< DT > arccosh() const
Computes the inverse hyperbolic cosine.
DT qx
First element of imaginary part.
TQuaternion< DT > sinh() const
Hyperbolic functions: Hyperbolic sine, hyperbolic cosine, hyperbolic tangent Source: http://www....
DT absoluteValue() const
Returns the absolute value of a quaternion which is the scalar quantity that determines the length of...
TQuaternion< DT > tan(bool *isError=nullptr) const
Computes the tangent, for error handling see _ML_QUATERNION_CALC_CHECKED.
TQuaternion< DT > add(const TQuaternion< DT > &b) const
Adds another quaternion to this one and returns the sum.
TQuaternion< DT > tanh(bool *isError=nullptr) const
Computes the hyperbolic tangent, for error handling see _ML_QUATERNION_CALC_CHECKED....
FloatingPointVector< DT, 3, Vector3DataContainer< DT > > getImaginaryPart() const
Returns a copy of the quaternion's imaginary part.
TQuaternion< DT > sqrt(bool *isError=nullptr) const
Computes the square root of a quaternion.
void set(const FloatingPointVector< DT, 3, Vector3DataContainer< DT > > &v, const DT w)
Sets all quaternion elements from a vector and DT parameter.
TQuaternion< DT > div(const TQuaternion< DT > &d, bool *isError=nullptr) const
Divides a quaternion by another quaternion.
TQuaternion< DT > sgn(bool *isError=nullptr) const
Returns the sign of the quaternion.
const FloatingPointVector< DT, 3, Vector3DataContainer< DT > > & qv() const
Returns a constant reference to the quaternion's imaginary part as vector object.
TQuaternion< DT > cotan(bool *isError=nullptr) const
Computes the cotangent, for error handling see _ML_QUATERNION_CALC_CHECKED.
FloatingPointVector< DT, 3, Vector3DataContainer< DT > > & qv()
Returns a modifiable reference to the quaternion's imaginary part as vector object,...
TQuaternion< DT > sin() const
Trigonometric functions: sine, cosine, tangent, cotangent.
TQuaternion< DT > cosh() const
Computes the hyperbolic cosine.
TQuaternion< DT > arcsin(bool *isError=nullptr) const
Inverse trigonometric functions: Inverse sine, inverse cosine, inverse tangent.
TQuaternion< DT > exp() const
Exponential and logarithmic functions: natural exponential, natural logarithm, power.
TQuaternion< DT > negate() const
Computes the negation.
DT norm() const
Computes the d norm.
TQuaternion< DT > arctanh() const
Computes the inverse hyperbolic tangent.
TQuaternion< DT > arcsinh() const
Inverse hyperbolic function: arcsinh, arccosh, arctanh.
TQuaternion< DT > mult(const TQuaternion< DT > &q) const
Multiplies this quaternion with another one (which is non-commutative). It is also called Grassman pr...
TQuaternion< DT > compDiv(const TQuaternion< DT > &b, bool *isError=nullptr) const
Divides each component by its corresponding component from b; the caller must guarantee that b does n...
TQuaternion()
Standard constructor, setting all elements to 0.
TQuaternion< DT > inverse(bool *isInvertible=nullptr) const
Computes and returns the inverse.
DT value_type
Scalar type used for qx, qy, qz, and qw.
DT & operator[](const size_t i)
Indexing operator.
Tmat4< DT > getAsMat4(bool *isConvertible=nullptr) const
Converts this quaternion to a 4x4 matrix.
TQuaternion< DT > & operator=(const TQuaternion< DT > &q)
Assignment operator.
TQuaternion< DT > add(DT s) const
Adds a scalar to the quaternion and returns the sum, it is equivalent to a scalar add of s to the qw ...
void set(const DT x, const DT y, const DT z, const DT w)
Sets all quaternion elements qx, qy, qz, and qw from parameters x, y, z, and w, respectively.
DT norm2() const
Computes the magnitude of the quaternion.
TQuaternion< DT > odd(const TQuaternion< DT > &p) const
Odd product, also known as cross-product or Grassman outer product.
TQuaternion< DT > normalize(bool *isError=nullptr) const
Returns the normalization of the quaternion.
TQuaternion(const TQuaternion< DT2 > &q2)
Copy constructor from another TQuaternion of same or other type.
TQuaternion< DT > conjugate() const
Computes the conjugate.
DT qz
Third element of imaginary part.
TQuaternion< DT > mult(DT s) const
Multiplies this quaternion with a scalar factor.
TQuaternion(const FloatingPointVector< DT, 4 > &v)
Creates a new TQuaternion from the four-dimensional parameter vector.
TQuaternion< DT > cos() const
Computes the cosine.
DT operator[](const size_t i) const
Constant indexing operator.
TQuaternion< DT > cotanh(bool *isError=nullptr) const
Computes the hyperbolic cotangent, for error handling see _ML_QUATERNION_CALC_CHECKED....
TQuaternion< DT > pow(const TQuaternion< DT > &quat) const
Computes the power of a quaternion.
TQuaternion(const FloatingPointVector< DT, 3, Vector3DataContainer< DT > > &v, DT w)
Constructor with a vector and DT parameter.
TQuaternion(const TQuaternion &q2)=default
explicitly generating the default constructor, to avoid a warning message with gcc9:
DT getRealPart() const
Returns a copy of the quaternion's real part, also called scalar() of a quaternion.
DT qy
Second element of imaginary part.
TQuaternion< DT > even(const TQuaternion< DT > &p) const
Even product, also known as Grassman inner product.
TQuaternion< DT > outer(const TQuaternion< DT > &q) const
Euclidean outer product of this quaternion with another one.
A four by four matrix class consisting of 4 row vectors.
Forward declarations to resolve header file dependencies.
Specialized base class for the FloatingPointVectorDataContainerBase.
bool MLValueIs0WOM(MLint8 a)
Returns true if value is 0, otherwise false.
bool MLValuesAreEqualWOM(MLint8 a, MLint8 b)
Returns true if values a and b are equal, otherwise false.
#define ML_BAD_PARAMETER
A bad/invalid parameter (or even an inappropriate image) has been passed to a module or an algorithm;...
#define ML_CHECK_FLOAT(x)
#define _ML_QUAT_CALC_EXP
Internal helper macro - do not use.
#define _ML_QUATERNION_CALC_CHECKED(FUNC_NAME, CALC_EXPR)
Defines a code fragment which checks and handles some stuff for safe expression calculations.
Target mlrange_cast(Source arg)
Generic version of checked ML casts.
ScopeGuard< Functor > operator+(ScopeGuardOnExit, Functor &&fn)
void ML_UTILS_EXPORT printTemplateError(const char *location, MLErrorCode reason, const std::string_view &handling)
bool operator==(const Tmat2< DT > &a, const Tmat2< DT > &b)
a == b ? Return true if yes.
T operator*(const FloatingPointVector< T, size, DataContainer > &a, const FloatingPointVector< T, size, DataContainer > &b)
Dot product, returns a.dot(b).
FloatingPointVector< T, size, DataContainer > operator-(FloatingPointVector< T, size, DataContainer > lhs, const FloatingPointVector< T, size, DataContainer > &rhs)
Return value is the component wise subtraction of rhs from lhs.
MLEXPORT std::ostream & operator<<(std::ostream &s, const ml::Field &v)
Overloads the operator "<<" for stream output of Field objects.