A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
Matrix.hh
1#pragma once
2
3#include "egg/math/Quat.hh"
4
5namespace EGG {
6
8class Matrix34f {
9public:
10 Matrix34f();
11 Matrix34f(f32 _e00, f32 _e01, f32 _e02, f32 _e03, f32 _e10, f32 _e11, f32 _e12, f32 _e13,
12 f32 _e20, f32 _e21, f32 _e22, f32 _e23);
13 ~Matrix34f() = default;
14
15 bool operator==(const Matrix34f &rhs) const {
16 return mtx == rhs.mtx;
17 }
18
20 [[nodiscard]] f32 &operator[](size_t row, size_t col) {
21 return mtx[row][col];
22 }
23
25 [[nodiscard]] f32 operator[](size_t row, size_t col) const {
26 return mtx[row][col];
27 }
28
29 void makeQT(const Quatf &q, const Vector3f &t);
30 void makeQ(const Quatf &q);
31 void makeRT(const Vector3f &r, const Vector3f &t);
32 void makeR(const Vector3f &r);
33 void makeS(const Vector3f &s);
34
36 void makeZero() {
37 *this = Matrix34f::zero;
38 }
39
40 void makeOrthonormalBasis(const Vector3f &v0, const Vector3f &v1);
41 void setAxisRotation(f32 angle, const Vector3f &axis);
42 void mulRow33(size_t rowIdx, const Vector3f &row);
43 void setBase(size_t col, const Vector3f &base);
44
45 [[nodiscard]] Matrix34f multiplyTo(const Matrix34f &rhs) const;
46 [[nodiscard]] Vector3f multVector(const Vector3f &vec) const;
47 [[nodiscard]] Vector3f ps_multVector(const Vector3f &vec) const;
48 [[nodiscard]] Vector3f multVector33(const Vector3f &vec) const;
49 [[nodiscard]] Vector3f ps_multVector33(const Vector3f &vec) const;
50 void inverseTo33(Matrix34f &out) const;
51 bool ps_inverse(Matrix34f &out) const;
52 [[nodiscard]] Matrix34f transpose() const;
53
54 [[nodiscard]] Vector3f translation() const {
55 return Vector3f(mtx[0][3], mtx[1][3], mtx[2][3]);
56 }
57
58 static const Matrix34f ident;
59 static const Matrix34f zero;
60
61private:
62 union {
63 std::array<std::array<f32, 4>, 3> mtx;
64 std::array<f32, 12> a;
65 };
66};
67
68} // namespace EGG
A 3 x 4 matrix.
Definition Matrix.hh:8
void makeOrthonormalBasis(const Vector3f &v0, const Vector3f &v1)
Sets a 3x3 orthonormal basis for a local coordinate system.
Definition Matrix.cc:162
Matrix34f multiplyTo(const Matrix34f &rhs) const
Multiplies two matrices.
Definition Matrix.cc:197
void setBase(size_t col, const Vector3f &base)
Sets one column of a matrix.
Definition Matrix.cc:189
f32 operator[](size_t row, size_t col) const
Accesses the matrix element at the specified row and column.
Definition Matrix.hh:25
void makeZero()
Zeroes every element of the matrix.
Definition Matrix.hh:36
void setAxisRotation(f32 angle, const Vector3f &axis)
Rotates the matrix about an axis.
Definition Matrix.cc:175
void makeQ(const Quatf &q)
Sets rotation matrix from quaternion.
Definition Matrix.cc:65
Vector3f multVector33(const Vector3f &vec) const
Multiplies a 3x3 matrix by a vector.
Definition Matrix.cc:243
f32 & operator[](size_t row, size_t col)
Accesses the matrix element at the specified row and column.
Definition Matrix.hh:20
void inverseTo33(Matrix34f &out) const
Inverts the 3x3 portion of the 3x4 matrix.
Definition Matrix.cc:269
void makeR(const Vector3f &r)
Sets 3x3 rotation matrix from a vector of Euler angles.
Definition Matrix.cc:122
Vector3f multVector(const Vector3f &vec) const
Multiplies a vector by a matrix.
Definition Matrix.cc:220
void makeRT(const Vector3f &r, const Vector3f &t)
Sets rotation-translation matrix.
Definition Matrix.cc:95
Matrix34f transpose() const
Transposes the 3x3 portion of the matrix.
Definition Matrix.cc:328
Vector3f ps_multVector(const Vector3f &vec) const
Paired-singles impl. of multVector.
Definition Matrix.cc:232
void makeQT(const Quatf &q, const Vector3f &t)
Sets matrix from rotation and position.
Definition Matrix.cc:35
void mulRow33(size_t rowIdx, const Vector3f &row)
Multiplies one row of a 3x3 matrix by a vector.
Definition Matrix.cc:182
bool ps_inverse(Matrix34f &out) const
Definition Matrix.cc:298
Vector3f ps_multVector33(const Vector3f &vec) const
Paired-singles impl. of multVector33.
Definition Matrix.cc:255
EGG core library.
Definition Archive.cc:6
A quaternion, used to represent 3D rotation.
Definition Quat.hh:12
A 3D float vector.
Definition Vector.hh:83