4#pragma warning(disable : 4201)
22 template <Primitive T>
28 static constexpr size_t size = 4;
32 constexpr explicit qua(T
w, T
x, T
y, T
z);
34 constexpr void reset();
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;
80 constexpr
qua<T> &operator*=(U const value) noexcept;
88 constexpr
qua<T> &operator/=(U const value) noexcept;
97 constexpr
qua<T> &operator+=(
qua<U> const &other) noexcept;
106 constexpr
qua<T> &operator-=(
qua<U> const &other) noexcept;
115 constexpr
qua<T> &operator*=(
qua<U> const &other) noexcept;
125 constexpr
qua<T> &operator/=(
qua<U> const &other) noexcept;
132 [[nodiscard]] constexpr T &operator[](
size_t i);
139 [[nodiscard]] constexpr T const &operator[](
size_t i) const;
165 static_assert(
sizeof(
data) ==
size *
sizeof(T));
168 template <
size_t size, Primitive T>
171 template <
size_t size, Primitive T>
175 template <Primitive T, Primitive U>
179 template <Primitive T, Primitive U>
182 template <Primitive T, Primitive U>
185 template <Primitive T, Primitive U>
188 template <Primitive T, Primitive U>
191 template <Primitive T, Primitive U>
194 template <Primitive T, Primitive U>
197 template <Primitive T, Primitive U>
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>
220 template <Primitive T>
223 template <Primitive T>
229 template <Primitive T>
232 template <Primitive T>
236 template <Primitive T>
239 template <Primitive T>
242 template <Primitive T>
245 template <Primitive T, Primitive U>
248 template <Primitive T, Primitive U>
251 template <Primitive T, Primitive U>
255 template <Primitive T>
258 template <Primitive T>
259 [[nodiscard]]
constexpr T
length(
qua<T> const &q)
noexcept;
261 template <Primitive T>
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.
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 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.
Definition of matrix with dimensions rows x columns and type T
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