typhoon/tempest/matrix/C33Matrix.hpp
2026-04-24 00:30:51 +04:00

83 lines
2.4 KiB
C++

#ifndef TEMPEST_MATRIX_C_33MATRIX_HPP
#define TEMPEST_MATRIX_C_33MATRIX_HPP
#include <cstdint>
class C2Vector;
class C3Vector;
class C34Matrix;
class C44Matrix;
class C4Quaternion;
class C33Matrix {
public:
enum : uint32_t {
eComponents = 9
};
// Static functions
static float Det(float a, float b, float c, float d);
static C33Matrix Rotation(float angle);
static C33Matrix Rotation(float angle, const C3Vector& axis, bool unit);
static C33Matrix RotationAroundX(float angle);
static C33Matrix RotationAroundY(float angle);
static C33Matrix RotationAroundZ(float angle);
// Member variables
float a0 = 1.0f;
float a1 = 0.0f;
float a2 = 0.0f;
float b0 = 0.0f;
float b1 = 1.0f;
float b2 = 0.0f;
float c0 = 0.0f;
float c1 = 0.0f;
float c2 = 1.0f;
// Member functions
C33Matrix() = default;
C33Matrix(const C3Vector& r0, const C3Vector& r1, const C3Vector& r2);
C33Matrix(float a0, float a1, float a2, float b0, float b1, float b2, float c0, float c1, float c2);
explicit C33Matrix(const C34Matrix& m);
explicit C33Matrix(const C44Matrix& m);
explicit C33Matrix(const C4Quaternion& rotation);
explicit C33Matrix(float a);
C33Matrix Adjoint() const;
C33Matrix AffineInverse(const C3Vector& v) const;
C33Matrix AffineInverse(float uniformScale) const;
C33Matrix Cofactors() const;
float Determinant() const;
void FromEulerAnglesZYX(float yaw, float pitch, float roll);
void Identity();
C33Matrix Inverse() const;
C33Matrix Inverse(float det) const;
void Rotate(const C4Quaternion& rotation);
void Rotate(float angle);
void Rotate(float angle, const C3Vector& axis, bool unit);
void Scale(const C2Vector& scale);
void Scale(const C3Vector& scale);
void Scale(float scale);
void Scale(float x, float y);
void Scale(float x, float y, float z);
float Trace();
void Translate(const C2Vector& move);
C33Matrix Transpose() const;
void Zero();
C33Matrix& operator+=(const C33Matrix& a);
C33Matrix& operator-=(const C33Matrix& a);
C33Matrix& operator*=(float a);
C33Matrix& operator*=(const C33Matrix& a);
C33Matrix& operator/=(float a);
};
C33Matrix operator*(const C33Matrix& l, const C33Matrix& r);
C33Matrix operator*(const C33Matrix& l, float a);
C33Matrix operator/(const C33Matrix& l, float a);
#endif