mal-math
C++20 mathematics library.
All Classes Namespaces Files Functions Variables Typedefs Concepts
quaternion.hpp
Go to the documentation of this file.
1#pragma once
2#include "mat.hpp"
3#pragma warning(push)
4#pragma warning(disable : 4201)
15namespace mal_math
16{
22 template <Primitive T>
23 struct qua
24 {
26 using type = T;
28 static constexpr size_t size = 4;
30 constexpr qua() : qua(1, 0, 0, 0) {}
32 constexpr explicit qua(T w, T x, T y, T z);
34 constexpr void reset();
40 constexpr explicit qua(T radians, vec<3, T> axis);
41
46 [[nodiscard]] constexpr mat<3, 3, T> as_mat3() const noexcept;
51 [[nodiscard]] constexpr mat<4, 4, T> as_mat4() const noexcept;
56 [[nodiscard]] constexpr vec<3, T> const &axis() const noexcept;
61 [[nodiscard]] constexpr T radians() const noexcept;
66 [[nodiscard]] constexpr qua<T> const &operator+() const noexcept;
71 [[nodiscard]] constexpr qua<T> operator-() const noexcept;
72
79 template <Primitive U>
80 constexpr qua<T> &operator*=(U const value) noexcept;
87 template <Primitive U>
88 constexpr qua<T> &operator/=(U const value) noexcept;
89
96 template <Primitive U>
97 constexpr qua<T> &operator+=(qua<U> const &other) noexcept;
98
105 template <Primitive U>
106 constexpr qua<T> &operator-=(qua<U> const &other) noexcept;
107
114 template <Primitive U>
115 constexpr qua<T> &operator*=(qua<U> const &other) noexcept;
116
124 template <Primitive U>
125 constexpr qua<T> &operator/=(qua<U> const &other) noexcept;
126
132 [[nodiscard]] constexpr T &operator[](size_t i);
133
139 [[nodiscard]] constexpr T const &operator[](size_t i) const;
140
142 union
143 {
144 struct
145 {
146 union
147 {
148 T x, r, s;
149 };
150 union
151 {
152 T y, g, t;
153 };
154 union
155 {
156 T z, b, p;
157 };
158 union
159 {
160 T w, a, q;
161 };
162 };
163 std::array<T, size> data;
164 };
165 static_assert(sizeof(data) == size * sizeof(T));
166 };
168 template <size_t size, Primitive T>
169 constexpr std::istream &operator>>(std::istream &is, vec<size, T> &vec);
171 template <size_t size, Primitive T>
172 constexpr std::ostream &operator<<(std::ostream &os, vec<size, T> &vec);
173
175 template <Primitive T, Primitive U>
176 [[nodiscard]] constexpr qua<T> operator*(U const value, qua<T> const &vector) noexcept;
177
179 template <Primitive T, Primitive U>
180 [[nodiscard]] constexpr qua<T> operator/(U const value, qua<T> const &vector) noexcept;
182 template <Primitive T, Primitive U>
183 [[nodiscard]] constexpr qua<T> operator*(qua<T> const &vector, U const value) noexcept;
185 template <Primitive T, Primitive U>
186 [[nodiscard]] constexpr qua<T> operator/(qua<T> const &vector, U const value) noexcept;
188 template <Primitive T, Primitive U>
189 [[nodiscard]] constexpr qua<T> operator+(qua<T> const &left, qua<U> const &right) noexcept;
191 template <Primitive T, Primitive U>
192 [[nodiscard]] constexpr qua<T> operator-(qua<T> const &left, qua<U> const &right) noexcept;
194 template <Primitive T, Primitive U>
195 [[nodiscard]] constexpr qua<T> operator*(qua<T> const &left, qua<U> const &right) noexcept;
197 template <Primitive T, Primitive U>
198 [[nodiscard]] constexpr qua<T> operator/(qua<T> const &left, qua<U> const &right) noexcept;
199
201 template <Primitive T, Primitive U>
202 [[nodiscard]] constexpr T dot(qua<T> const &left, qua<U> const &right) noexcept;
204 template <Primitive T>
205 [[nodiscard]] constexpr T angle(qua<T> const &quaternion) noexcept;
207 template <Primitive T>
208 [[nodiscard]] constexpr T pitch(qua<T> const &quaternion) noexcept;
210 template <Primitive T>
211 [[nodiscard]] constexpr T yaw(qua<T> const &quaternion) noexcept;
213 template <Primitive T>
214 [[nodiscard]] constexpr T roll(qua<T> const &quaternion) noexcept;
216 template <Primitive T>
217 [[nodiscard]] constexpr vec<3, T> QuaternionToEuler(qua<T> const &quaternion) noexcept;
218
220 template <Primitive T>
221 [[nodiscard]] constexpr qua<T> QuaternionFromEuler(vec<3, T> const &angles) noexcept;
223 template <Primitive T>
224 [[nodiscard]] constexpr qua<T> QuaternionFromEuler(T roll, T pitch, T yaw) noexcept requires(std::is_floating_point_v<T>);
226 template <AnyMat U>
227 [[nodiscard]] constexpr qua<typename U::type> QuaternionFromRotationMatrix(U const &mat) noexcept requires(U::size.x == 3 && U::size.y == 3 && std::is_floating_point_v<typename U::type>);
229 template <Primitive T>
230 [[nodiscard]] constexpr qua<T> operator*(qua<T> const &q, qua<T> const &p) noexcept;
232 template <Primitive T>
233 [[nodiscard]] constexpr vec<3, T> operator*(qua<T> const &q, vec<3, T> const &v) noexcept;
234
236 template <Primitive T>
237 [[nodiscard]] constexpr vec<3, T> operator*(vec<3, T> const &v, qua<T> const &q) noexcept;
239 template <Primitive T>
240 [[nodiscard]] constexpr qua<T> conjugate(qua<T> const &q) noexcept;
242 template <Primitive T>
243 [[nodiscard]] constexpr qua<T> inverse(qua<T> const &q) noexcept;
245 template <Primitive T, Primitive U>
246 [[nodiscard]] constexpr vec<3, T> cross(qua<T> const &left, vec<3, U> const &right) noexcept;
248 template <Primitive T, Primitive U>
249 [[nodiscard]] constexpr vec<3, T> cross(vec<3, U> const &left, qua<T> const &right) noexcept;
251 template <Primitive T, Primitive U>
252 [[nodiscard]] constexpr qua<T> cross(qua<T> const &left, qua<U> const &right) noexcept;
253
255 template <Primitive T>
256 [[nodiscard]] constexpr mat<4, 4, T> rotate(mat<4, 4, T> const &matrix, qua<T> const &q) noexcept;
258 template <Primitive T>
259 [[nodiscard]] constexpr T length(qua<T> const &q) noexcept;
261 template <Primitive T>
262 [[nodiscard]] constexpr qua<T> normalize(qua<T> const &q) noexcept;
263} // namespace mal_math
264
265#pragma warning(pop)
266
267namespace mal_math
268{
271}; // namespace mal_math
272#include "quaternion.inl"
Concept that ensures a type is either floating point or integral.
Provides matrix definitions tailored for various sizes and primitive types.
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.
Definition mat_math.inl:256
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.
Definition mat_math.inl:100
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.
Definition mat_math.inl:33
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.
Definition mat_math.inl:8
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.
Definition mat_math.inl:240
constexpr std::ostream & operator<<(std::ostream &os, U const &matrix)
Writes a matrix to an output stream.
Definition mat_math.inl:20
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.
Definition mat_math.inl:105
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.
Definition of matrix with dimensions rows x columns and type T
Definition matnxn.hpp:39
Represents a quaternion with primitive type T.
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).
T type
Alias for the primitive data type used in the quaternion.
std::array< T, size > data
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 vec< 3, T > const & axis() const noexcept
Retrieves the axis of rotation from the quaternion.
constexpr T radians() const noexcept
Retrieves the angle of rotation from the quaternion.
static constexpr size_t size
Represents the number of components in the quaternion.
Definition of the mathematical vector with fixed size L and type T
Definition vecn.hpp:22