14 template <Primitive T>
21 template <Primitive T>
35 template <Primitive T>
49 return_value[0][0] = T(1) - T(2) * (qyy + qzz);
50 return_value[1][0] = T(2) * (qxy - qwz);
51 return_value[2][0] = T(2) * (qxz + qwy);
53 return_value[0][1] = T(2) * (qxy + qwz);
54 return_value[1][1] = T(1) - T(2) * (qxx + qzz);
55 return_value[2][1] = T(2) * (qyz - qwx);
57 return_value[0][2] = T(2) * (qxz - qwy);
58 return_value[1][2] = T(2) * (qyz + qwx);
59 return_value[2][2] = T(1) - T(2) * (qxx + qyy);
63 template <Primitive T>
68 template <Primitive T>
71 return *
reinterpret_cast<vec<3, T> *
>((
void *)&x);
73 template <Primitive T>
79 template <Primitive T>
84 template <Primitive T>
87 return qua<T>(-x, -y, -z, -w);
90 template <Primitive T>
91 template <Primitive U>
100 template <Primitive T>
101 template <Primitive U>
110 template <Primitive T>
111 template <Primitive U>
120 template <Primitive T>
121 template <Primitive U>
130 template <Primitive T>
131 template <Primitive U>
137 this->w = t0.
w * t1.
w - t0.
x * t1.
x - t0.
y * t1.
y - t0.
z * t1.
z;
138 this->x = t0.
w * t1.
x + t0.
x * t1.
w + t0.
y * t1.
z - t0.
z * t1.
y;
139 this->y = t0.
w * t1.
y + t0.
y * t1.
w + t0.
z * t1.
x - t0.
x * t1.
z;
140 this->z = t0.
w * t1.
z + t0.
z * t1.
w + t0.
x * t1.
y - t0.
y * t1.
x;
143 template <Primitive T>
144 template <Primitive U>
154 template <Primitive T>
160 template <Primitive T>
166 template <Primitive T>
169 for (
int i = 0; i < 4; i++)
175 template <Primitive T>
178 for (
int i = 0; i < 4; i++)
185 template <Primitive T, Primitive U>
188 return qua<T>(vector) *= value;
190 template <Primitive T, Primitive U>
193 return qua<T>(value / vector.x, value / vector.y, value / vector.z, value / vector.w);
195 template <Primitive T, Primitive U>
198 return qua<T>(vector) *= value;
200 template <Primitive T, Primitive U>
203 return qua<T>(vector) /= value;
205 template <Primitive T, Primitive U>
208 return qua<T>(left) += right;
210 template <Primitive T, Primitive U>
213 return qua<T>(left) -= right;
215 template <Primitive T, Primitive U>
218 return qua<T>(left) *= right;
220 template <Primitive T, Primitive U>
223 return qua<T>(left) /= right;
226 template <Primitive T, Primitive U>
230 for (
size_t i = 0; i < 4; i++)
232 return_value += left[i] *
static_cast<T
>(right[i]);
237 template <Primitive T>
238 [[nodiscard]]
constexpr T
angle(
qua<T> const &quaternion)
noexcept
240 if (
abs(quaternion.w) >
cos(0.5f))
242 T
const a =
asin(
sqrt(quaternion.x * quaternion.x +
243 quaternion.y * quaternion.y +
244 quaternion.z * quaternion.z))
246 if (quaternion.w <
static_cast<T
>(0))
248 return static_cast<T
>(std::numbers::pi * 2) - a;
252 return acos(quaternion.w) * T(2);
255 template <Primitive T>
256 [[nodiscard]]
constexpr T
pitch(
qua<T> const &quaternion)
noexcept
259 2 * (quaternion.y * quaternion.z + quaternion.w * quaternion.x),
260 quaternion.w * quaternion.w - quaternion.x * quaternion.x - quaternion.y * quaternion.y + quaternion.z * quaternion.z);
262 template <Primitive T>
263 [[nodiscard]]
constexpr T
yaw(
qua<T> const &quaternion)
noexcept
265 return std::asin(
clamp(
static_cast<T
>(-2) * (quaternion.x * quaternion.z - quaternion.w * quaternion.y),
static_cast<T
>(-1),
static_cast<T
>(1)));
263 [[nodiscard]]
constexpr T
yaw(
qua<T> const &quaternion)
noexcept {
…}
267 template <Primitive T>
268 [[nodiscard]]
constexpr T
roll(
qua<T> const &quaternion)
noexcept
271 2 * (quaternion.x * quaternion.y + quaternion.w * quaternion.z),
272 quaternion.w * quaternion.w + quaternion.x * quaternion.x - quaternion.y * quaternion.y - quaternion.z * quaternion.z);
268 [[nodiscard]]
constexpr T
roll(
qua<T> const &quaternion)
noexcept {
…}
274 template <Primitive T>
280 template <Primitive T>
283 return qua<T>(q.w, -q.x, -q.y, -q.z);
286 template <Primitive T>
292 template <Primitive T, Primitive U>
297 template <Primitive T, Primitive U>
302 template <Primitive T, Primitive U>
306 left.
w *right.x + left.x * right.w + left.y * right.z - left.z * right.y,
307 left.w *right.y - left.x * right.z + left.y * right.w + left.z * right.x,
308 left.w *right.z + left.x * right.y - left.y * right.x + left.z * right.w,
309 left.w *right.w - left.x * right.x - left.y * right.y - left.z * right.z};
312 template <Primitive T>
319 c.x *c.y *c.z + s.x * s.y * s.z,
320 s.x *c.y *c.z - c.x * s.y * s.z,
321 c.x *s.y *c.z + s.x * c.y * s.z,
322 c.x *c.y *s.z - s.x * s.y * c.z
325 template <Primitive T>
333 using T =
typename U::type;
334 T fourXSquaredMinus1 = m[0][0] - m[1][1] - m[2][2];
335 T fourYSquaredMinus1 = m[1][1] - m[0][0] - m[2][2];
336 T fourZSquaredMinus1 = m[2][2] - m[0][0] - m[1][1];
337 T fourWSquaredMinus1 = m[0][0] + m[1][1] + m[2][2];
339 int biggestIndex = 0;
340 T fourBiggestSquaredMinus1 = fourWSquaredMinus1;
341 if (fourXSquaredMinus1 > fourBiggestSquaredMinus1)
343 fourBiggestSquaredMinus1 = fourXSquaredMinus1;
346 if (fourYSquaredMinus1 > fourBiggestSquaredMinus1)
348 fourBiggestSquaredMinus1 = fourYSquaredMinus1;
351 if (fourZSquaredMinus1 > fourBiggestSquaredMinus1)
353 fourBiggestSquaredMinus1 = fourZSquaredMinus1;
357 T biggestVal = std::sqrt(fourBiggestSquaredMinus1 +
static_cast<T
>(1)) *
static_cast<T
>(0.5);
358 T mult =
static_cast<T
>(0.25) / biggestVal;
360 switch (biggestIndex)
363 return qua<T>(biggestVal, (m[1][2] - m[2][1]) * mult, (m[2][0] - m[0][2]) * mult, (m[0][1] - m[1][0]) * mult);
365 return qua<T>((m[1][2] - m[2][1]) * mult, biggestVal, (m[0][1] + m[1][0]) * mult, (m[2][0] + m[0][2]) * mult);
367 return qua<T>((m[2][0] - m[0][2]) * mult, (m[0][1] + m[1][0]) * mult, biggestVal, (m[1][2] + m[2][1]) * mult);
369 return qua<T>((m[0][1] - m[1][0]) * mult, (m[2][0] + m[0][2]) * mult, (m[1][2] + m[2][1]) * mult, biggestVal);
372 return qua<T>(1, 0, 0, 0);
375 template <Primitive T>
380 template <Primitive T>
383 vec<3, T> const QuatVector(q.x, q.y, q.z);
387 return v + ((uv * q.w) + uuv) *
static_cast<T
>(2);
390 template <Primitive T>
396 template <Primitive T>
402 template <Primitive T>
407 template <Primitive T>
411 if (l <=
static_cast<T
>(0))
413 return qua<T>(1, 0, 0, 0);
415 T one_over_len =
static_cast<T
>(1) / l;
416 return qua<T>(q.w * one_over_len, q.x * one_over_len, q.y * one_over_len,
Contains mathematical utility functions and classes.
constexpr qua< T > conjugate(qua< T > const &q) noexcept
Computes the conjugate of a quaternion.
constexpr T length(qua< T > const &q) noexcept
Computes the length (or magnitude) of a quaternion.
constexpr mat< 4, 4, std::remove_const_t< typename T::type > > rotate(T const &matrix, U angle, V const &axis)
Rotates a matrix by a given angle around a given axis.
constexpr T clamp(T x, T min, T max) noexcept
Function to clamp a value between a minimum and maximum.
constexpr mat< T::size.x, T::size.y, std::remove_const_t< typename T::type > > operator-(T const &left, U const right)
Subtracts a matrix from a primitive.
constexpr T angle(qua< T > const &quaternion) noexcept
Computes the angle (or magnitude) of a quaternion.
constexpr qua< typename U::type > QuaternionFromRotationMatrix(U const &mat) noexcept
Creates a quaternion from a 3x3 rotation matrix.
constexpr auto operator*(U const &lhs, V const &rhs)
Multiplies two matrices.
constexpr vec< 3, T > QuaternionToEuler(qua< T > const &quaternion) noexcept
Converts a quaternion to Euler angles.
constexpr T yaw(qua< T > const &quaternion) noexcept
Computes the yaw from a quaternion.
constexpr T roll(qua< T > const &quaternion) noexcept
Computes the roll from a quaternion.
constexpr std::istream & operator>>(std::istream &is, U &matrix)
Reads a matrix from an input stream.
constexpr mat< T::size.x, T::size.y, std::remove_const_t< typename T::type > > inverse(T const &matrix)
Calculates the inverse of a square matrix.
constexpr T radians(T x) noexcept
Function to convert degrees to radians.
constexpr std::ostream & operator<<(std::ostream &os, U const &matrix)
Writes a matrix to an output stream.
constexpr T dot(qua< T > const &left, qua< U > const &right) noexcept
Computes the dot product of two quaternions.
constexpr qua< T > normalize(qua< T > const &q) noexcept
Normalizes a quaternion.
constexpr mat< T::size.x, T::size.y, std::remove_const_t< typename T::type > > operator+(U const left, T const &right)
Adds a matrix to a primitive.
constexpr qua< T > QuaternionFromEuler(vec< 3, T > const &angles) noexcept
Creates a quaternion from Euler angles given in a vector.
constexpr T pitch(qua< T > const &quaternion) noexcept
Computes the pitch from a quaternion.
constexpr qua< T > operator/(U const value, qua< T > const &vector) noexcept
Scalar-quaternion division.
constexpr vec< 3, T > cross(qua< T > const &left, vec< 3, U > const &right) noexcept
Cross product between quaternion and vector.
Quaternion operations and related mathematical functions.
Definition of matrix with dimensions rows x columns and type T
Represents a quaternion with primitive type T.
constexpr qua< T > & operator*=(U const value) noexcept
Multiplies the quaternion by a scalar value.
constexpr mat< 3, 3, T > as_mat3() const noexcept
Converts the quaternion to a 3x3 rotation matrix.
constexpr void reset()
Resets the quaternion to its default state (1, 0, 0, 0).
constexpr T & operator[](size_t i)
Accesses a component of the quaternion by index.
constexpr mat< 4, 4, T > as_mat4() const noexcept
Converts the quaternion to a 4x4 rotation matrix.
constexpr qua()
Default constructor initializes the quaternion to its default state (1, 0, 0, 0).
constexpr qua< T > const & operator+() const noexcept
Unary plus operator.
constexpr qua< T > operator-() const noexcept
Unary minus operator. Inverts the sign of each component.
constexpr vec< 3, T > const & axis() const noexcept
Retrieves the axis of rotation from the quaternion.
constexpr qua< T > & operator-=(qua< U > const &other) noexcept
Subtracts another quaternion from this quaternion component-wise.
constexpr T radians() const noexcept
Retrieves the angle of rotation from the quaternion.
constexpr qua< T > & operator/=(U const value) noexcept
Divides the components of the quaternion by a scalar value.
constexpr qua< T > & operator+=(qua< U > const &other) noexcept
Adds another quaternion to this quaternion component-wise.
Definition of the mathematical vector with fixed size L and type T