4 #ifndef OPENVDB_MATH_QUAT_H_HAS_BEEN_INCLUDED
5 #define OPENVDB_MATH_QUAT_H_HAS_BEEN_INCLUDED
23 template<
typename T>
class Quat;
33 if (fabs(qdot) >= 1.0) {
38 sineAngle =
sin(angle);
47 if (sineAngle <= tolerance) {
50 Quat<T> qtemp(s * q1[0] + t * q2[0], s * q1[1] + t * q2[1],
51 s * q1[2] + t * q2[2], s * q1[3] + t * q2[3]);
58 double lengthSquared = qtemp.
dot(qtemp);
60 if (lengthSquared <= tolerance * tolerance) {
61 qtemp = (t < 0.5) ? q1 : q2;
63 qtemp *= 1.0 /
sqrt(lengthSquared);
68 T sine = 1.0 / sineAngle;
69 T a =
sin((1.0 - t) * angle) * sine;
70 T b =
sin(t * angle) * sine;
71 return Quat<T>(a * q1[0] + b * q2[0], a * q1[1] + b * q2[1],
72 a * q1[2] + b * q2[2], a * q1[3] + b * q2[3]);
118 mm[0] = axis.
x() *
s;
119 mm[1] = axis.
y() *
s;
120 mm[2] = axis.
z() *
s;
139 template<
typename T1>
145 "A non-rotation matrix can not be used to construct a quaternion");
149 "A reflection matrix can not be used to construct a quaternion");
156 T factor = 0.25 / q_w;
158 mm[0] = factor * (
rot(1,2) -
rot(2,1));
159 mm[1] = factor * (
rot(2,0) -
rot(0,2));
160 mm[2] = factor * (
rot(0,1) -
rot(1,0));
162 }
else if (
rot(0,0) >
rot(1,1) &&
rot(0,0) >
rot(2,2)) {
165 T factor = 0.25 / q_x;
168 mm[1] = factor * (
rot(0,1) +
rot(1,0));
169 mm[2] = factor * (
rot(2,0) +
rot(0,2));
170 mm[3] = factor * (
rot(1,2) -
rot(2,1));
171 }
else if (
rot(1,1) >
rot(2,2)) {
174 T factor = 0.25 / q_y;
176 mm[0] = factor * (
rot(0,1) +
rot(1,0));
178 mm[2] = factor * (
rot(1,2) +
rot(2,1));
179 mm[3] = factor * (
rot(2,0) -
rot(0,2));
183 T factor = 0.25 / q_z;
185 mm[0] = factor * (
rot(2,0) +
rot(0,2));
186 mm[1] = factor * (
rot(1,2) +
rot(2,1));
188 mm[3] = factor * (
rot(0,1) -
rot(1,0));
214 operator T*() {
return mm; }
215 operator const T*()
const {
return mm; }
228 if ( sqrLength > 1.0e-8 ) {
230 return T(
T(2.0) *
acos(mm[3]));
243 if ( sqrLength > 1.0e-8 ) {
245 T invLength =
T(
T(1)/
sqrt(sqrLength));
247 return Vec3<T>( mm[0]*invLength, mm[1]*invLength, mm[2]*invLength );
272 mm[0] = axis.
x() *
s;
273 mm[1] = axis.
y() *
s;
274 mm[2] = axis.
z() *
s;
291 mm[0] =
mm[1] =
mm[2] = 0;
385 return Quat<T>(
mm[0]*scalar,
mm[1]*scalar,
mm[2]*scalar,
mm[3]*scalar);
391 return Quat<T>(
mm[0]/scalar,
mm[1]/scalar,
mm[2]/scalar,
mm[3]/scalar);
396 {
return Quat<T>(-
mm[0], -mm[1], -mm[2], -mm[3]); }
402 mm[0] = q1.
mm[0] + q2.
mm[0];
403 mm[1] = q1.
mm[1] + q2.
mm[1];
404 mm[2] = q1.
mm[2] + q2.
mm[2];
405 mm[3] = q1.
mm[3] + q2.
mm[3];
414 mm[0] = q1.
mm[0] - q2.
mm[0];
415 mm[1] = q1.
mm[1] - q2.
mm[1];
416 mm[2] = q1.
mm[2] - q2.
mm[2];
417 mm[3] = q1.
mm[3] - q2.
mm[3];
426 mm[0] = q1.
mm[3]*q2.
mm[0] + q1.
mm[0]*q2.
mm[3] +
427 q1.
mm[1]*q2.
mm[2] - q1.
mm[2]*q2.
mm[1];
428 mm[1] = q1.
mm[3]*q2.
mm[1] + q1.
mm[1]*q2.
mm[3] +
429 q1.
mm[2]*q2.
mm[0] - q1.
mm[0]*q2.
mm[2];
430 mm[2] = q1.
mm[3]*q2.
mm[2] + q1.
mm[2]*q2.
mm[3] +
431 q1.
mm[0]*q2.
mm[1] - q1.
mm[1]*q2.
mm[0];
432 mm[3] = q1.
mm[3]*q2.
mm[3] - q1.
mm[0]*q2.
mm[0] -
433 q1.
mm[1]*q2.
mm[1] - q1.
mm[2]*q2.
mm[2];
442 mm[0] = scale * q.
mm[0];
443 mm[1] = scale * q.
mm[1];
444 mm[2] = scale * q.
mm[2];
445 mm[3] = scale * q.
mm[3];
460 return Quat<T>( +
w()*omega.
x() -
z()*omega.
y() +
y()*omega.
z() ,
461 +
z()*omega.
x() +
w()*omega.
y() -
x()*omega.
z() ,
462 -
y()*omega.
x() +
x()*omega.
y() +
w()*omega.
z() ,
463 -
x()*omega.
x() -
y()*omega.
y() -
z()*omega.
z() );
481 "Normalizing degenerate quaternion");
491 "Cannot invert degenerate quaternion");
493 result.
mm[3] = -result.
mm[3];
502 return Quat<T>(-
mm[0], -mm[1], -mm[2], mm[3]);
519 std::ostringstream
buffer;
524 for (
unsigned j(0);
j < 4;
j++) {
525 if (
j) buffer <<
", ";
543 void write(std::ostream& os)
const { os.write(static_cast<char*>(&
mm),
sizeof(
T) * 4); }
544 void read(std::istream& is) { is.read(static_cast<char*>(&
mm),
sizeof(
T) * 4); }
551 template <
typename S,
typename T>
558 template <
typename T,
typename T0>
566 if (q1.
dot(q2) < 0) q2 *= -1;
568 Quat<T> qslerp = slerp<T>(q1, q2,
static_cast<T>(
t));
569 MatType m = rotation<MatType>(qslerp);
583 template <
typename T,
typename T0>
588 Mat3<T> m00, m01, m02, m10, m11;
590 m00 =
slerp(m1, m2, t);
591 m01 =
slerp(m2, m3, t);
592 m02 =
slerp(m3, m4, t);
594 m10 =
slerp(m00, m01, t);
595 m11 =
slerp(m01, m02, t);
597 return slerp(m10, m11, t);
615 #endif //OPENVDB_MATH_QUAT_H_HAS_BEEN_INCLUDED
Quat operator*(T scalar) const
Return (this*scalar), e.g. q = q1 * scalar;.
SYS_API double cos(double x)
Quat(T x, T y, T z, T w)
Constructor with four arguments, e.g. Quatf q(1,2,3,4);.
Vec3< T > axis() const
Return axis of rotation.
Quat & sub(const Quat &q1, const Quat &q2)
T operator[](int i) const
Array style constant reference to the components, e.g. float f = q[1];.
bool isExactlyEqual(const T0 &a, const T1 &b)
Return true if a is exactly equal to b.
Quat derivative(const Vec3< T > &omega) const
Quat & scale(T scale, const Quat &q)
GLsizei const GLchar *const * string
Quat operator*(const Quat &q) const
Return (this*q), e.g. q = q1 * q2;.
GA_API const UT_StringHolder rot
vfloat4 sqrt(const vfloat4 &a)
GLdouble GLdouble GLdouble z
Mat3< typename promote< T0, T1 >::type > operator*(const Mat3< T0 > &m0, const Mat3< T1 > &m1)
Multiply m0 by m1 and return the resulting matrix.
GLboolean GLboolean GLboolean GLboolean a
bool operator==(const Quat &q) const
Equality operator, does exact floating point comparisons.
#define OPENVDB_USE_VERSION_NAMESPACE
Quat unit() const
this = normalized this
Quat inverse(T tolerance=T(0)) const
returns inverse of this
**But if you need a result
GLdouble GLdouble GLdouble q
Quat & init(T x, T y, T z, T w)
"this" quaternion gets initialized to [x, y, z, w]
Vec3< typename MatType::value_type > eulerAngles(const MatType &mat, RotationOrder rotationOrder, typename MatType::value_type eps=static_cast< typename MatType::value_type >(1.0e-8))
Return the Euler angles composing the given rotation matrix.
Quat operator-(const Quat &q) const
Return (this-q), e.g. q = q1 - q2;.
Quat operator+(const Quat &q) const
Return (this+q), e.g. q = q1 + q2;.
Vec3< T0 > transform(const Vec3< T0 > &v) const
Quat operator*=(const Quat &q)
Assigns this to (this*q), e.g. q *= q1;.
Quat operator/(T scalar) const
Return (this/scalar), e.g. q = q1 / scalar;.
constexpr T zeroVal()
Return the value of type T that corresponds to zero.
#define OPENVDB_IS_POD(Type)
Mat3< T > bezLerp(const Mat3< T0 > &m1, const Mat3< T0 > &m2, const Mat3< T0 > &m3, const Mat3< T0 > &m4, T t)
Quat(T *a)
Constructor with array argument, e.g. float a[4]; Quatf q(a);.
Quat(const Mat3< T1 > &rot)
Constructor given a rotation matrix.
Quat & operator-=(const Quat &q)
Subtract quaternion q from "this" quaternion, e.g. q -= q1;.
bool isApproxEqual(const Type &a, const Type &b, const Type &tolerance)
Return true if a is equal to b to within the given tolerance.
bool eq(const Quat &q, T eps=1.0e-7) const
Test if "this" is equivalent to q with tolerance of eps value.
void read(std::istream &is)
Quat(math::Axis axis, T angle)
Constructor given rotation as axis and angle.
General-purpose arithmetic and comparison routines, most of which accept arbitrary value types (or at...
bool normalize(T eps=T(1.0e-8))
this = normalized this
Vec3< T > rotateVector(const Vec3< T > &v) const
Return rotated vector by "this" quaternion.
T angle(const Vec2< T > &v1, const Vec2< T > &v2)
bool isUnitary(const MatType &m)
Determine if a matrix is unitary (i.e., rotation or reflection).
Quat operator-() const
Negation operator, e.g. q = -q;.
Vec3< T > eulerAngles(RotationOrder rotationOrder) const
Returns vector of x,y,z rotational components.
T det() const
Determinant of matrix.
SYS_API double acos(double x)
GLboolean GLboolean GLboolean b
static unsigned numElements()
Quat & setIdentity()
Set "this" vector to identity.
Quat & init()
"this" quaternion gets initialized to identity, same as setIdentity()
T dot(const Quat &q) const
Dot product.
T & operator()(int i)
Alternative indexed reference to the elements.
T & x()
Reference to the component, e.g. v.x() = 4.5f;.
T & operator[](int i)
Array style reference to the components, e.g. q[3] = 1.34f;.
T trace() const
Trace of matrix.
T & x()
Reference to the component, e.g. q.x() = 4.5f;.
T angle() const
Return angle of rotation.
void write(std::ostream &os) const
Quat & setAxisAngle(const Vec3< T > &axis, T angle)
T x() const
Get the component, e.g. float f = q.w();.
GLubyte GLubyte GLubyte GLubyte w
Quat & operator*=(T scalar)
Scale "this" quaternion by scalar, e.g. q *= scalar;.
Quat & add(const Quat &q1, const Quat &q2)
Quat< T > slerp(const Quat< T > &q1, const Quat< T > &q2, T t, T tolerance=0.00001)
Linear interpolation between the two quaternions.
static Quat zero()
Predefined constants, e.g. Quat q = Quat::identity();.
Quat & mult(const Quat &q1, const Quat &q2)
Quat & setZero()
Set "this" vector to zero.
Quat(const Vec3< T > &axis, T angle)
#define OPENVDB_VERSION_NAME
The version namespace name for this library version.
SYS_API double sin(double x)
Quat & operator+=(const Quat &q)
Add quaternion q to "this" quaternion, e.g. q += q1;.
#define OPENVDB_THROW(exception, message)
T operator()(int i) const
Alternative indexed constant reference to the elements,.
friend std::ostream & operator<<(std::ostream &stream, const Quat &q)
Output to the stream, e.g. std::cout << q << std::endl;.