3#include "egg/math/Quat.hh"
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);
15 bool operator==(
const Matrix34f &rhs)
const {
16 return mtx == rhs.mtx;
25 [[nodiscard]] f32
operator[](
size_t row,
size_t col)
const {
37 *
this = Matrix34f::zero;
54 [[nodiscard]]
Vector3f translation()
const {
55 return Vector3f(mtx[0][3], mtx[1][3], mtx[2][3]);
58 static const Matrix34f ident;
59 static const Matrix34f zero;
63 std::array<std::array<f32, 4>, 3> mtx;
64 std::array<f32, 12> a;
void makeOrthonormalBasis(const Vector3f &v0, const Vector3f &v1)
Sets a 3x3 orthonormal basis for a local coordinate system.
Matrix34f multiplyTo(const Matrix34f &rhs) const
Multiplies two matrices.
void setBase(size_t col, const Vector3f &base)
Sets one column of a matrix.
f32 operator[](size_t row, size_t col) const
Accesses the matrix element at the specified row and column.
void makeZero()
Zeroes every element of the matrix.
void setAxisRotation(f32 angle, const Vector3f &axis)
Rotates the matrix about an axis.
void makeQ(const Quatf &q)
Sets rotation matrix from quaternion.
Vector3f multVector33(const Vector3f &vec) const
Multiplies a 3x3 matrix by a vector.
f32 & operator[](size_t row, size_t col)
Accesses the matrix element at the specified row and column.
void inverseTo33(Matrix34f &out) const
Inverts the 3x3 portion of the 3x4 matrix.
void makeR(const Vector3f &r)
Sets 3x3 rotation matrix from a vector of Euler angles.
Vector3f multVector(const Vector3f &vec) const
Multiplies a vector by a matrix.
void makeRT(const Vector3f &r, const Vector3f &t)
Sets rotation-translation matrix.
Matrix34f transpose() const
Transposes the 3x3 portion of the matrix.
Vector3f ps_multVector(const Vector3f &vec) const
Paired-singles impl. of multVector.
void makeQT(const Quatf &q, const Vector3f &t)
Sets matrix from rotation and position.
void mulRow33(size_t rowIdx, const Vector3f &row)
Multiplies one row of a 3x3 matrix by a vector.
bool ps_inverse(Matrix34f &out) const
Vector3f ps_multVector33(const Vector3f &vec) const
Paired-singles impl. of multVector33.
A quaternion, used to represent 3D rotation.