22 float t00,
float t01,
float t02,
float t03,
23 float t10,
float t11,
float t12,
float t13,
24 float t20,
float t21,
float t22,
float t23,
25 float t30,
float t31,
float t32,
float t33);
29 float t00,
float t10,
float t20,
float t30,
30 float t01,
float t11,
float t21,
float t31,
31 float t02,
float t12,
float t22,
float t32,
32 float t03,
float t13,
float t23,
float t33)
73 [[nodiscard]]
static std::optional<m4>
from(
const Q& q);
104 [[nodiscard]]
float get(
int row,
int col)
const;
160 float t00,
float t01,
float t02,
float t03,
161 float t10,
float t11,
float t12,
float t13,
162 float t20,
float t21,
float t22,
float t23,
163 float t30,
float t31,
float t32,
float t33)
#define ADD_CATCH_FORMATTER_DEF(TYPE)
constexpr m4 m4_identity
The identity matrix.
An operator-(const An &lhs, const An &rhs)
An operator+(const An &lhs, const An &rhs)
An operator*(const An &lhs, float rhs)
std::string string_from(const An &a)
An angle in both degrees and radians.
A quaternion representing a rotation in 3d.
static m4 from_rot_y(const An &a)
Create a rotation matrix, around the Y axis.
v4 get_column(int c) const
Get a column as vec4.
m4 get_transposed() const
Gets the transpose of a matrix.
n3 get_transformed_vec(const n3 &p) const
Get a transformed unit3.
void operator-=(const m4 &rhs)
v3 get_transformed_point(const v3 &p) const
Get a transformed vec3 assuming it's a point.
n3 get_z_axis() const
Get the local Z azis.
bool invert()
Invert the current matrix.
v4 get_row(int r) const
Get a row as a vec4.
static m4 from_rot_x(const An &a)
Create a rotation matrix, around the X axis.
v3 get_transformed_vec(const v3 &p) const
Get a transformed vec3, assuming it's a normal vector.
static m4 create_ortho_lrud(float l, float r, float t, float b, float n, float f)
Create an orthographic projection matrix.
static m4 from_col_major(float t00, float t01, float t02, float t03, float t10, float t11, float t12, float t13, float t20, float t21, float t22, float t23, float t30, float t31, float t32, float t33)
Create a new matrix from column major format.
float get(int row, int col) const
Return a single value given a row and column.
m4 get_inverted() const
Return the inverted matrix.
static m4 from_rot_z(const An &a)
Create a rotation matrix, around the Z axis.
void operator+=(const m4 &rhs)
static constexpr m4 from_row_major(float t00, float t10, float t20, float t30, float t01, float t11, float t21, float t31, float t02, float t12, float t22, float t32, float t03, float t13, float t23, float t33)
Create a new matrix from row major format.
m4 get_rotated(const AA &aa) const
Combine this with a rotation matrix.
static constexpr m4 from_scalar(float scalar)
Create a matrix from a single scalar.
v4 get_major() const
Get the major vector.
float * get_column_major_data_ptr()
Get a direct pointer to the data in column major format, for API integration.
static m4 create_perspective(const An &fov, float aspect_ratio, float near, float far)
Create a perspective projection matrix.
static m4 from_translation(const v3 &v)
Create a translation matrix.
m4 get_translated(const v3 &t) const
Combine this with a translation matrix.
v4 get_transformed(const v4 &p) const
Get a transformed vec4.
static std::optional< m4 > from(const Q &q)
Create a rotation matrix, from a quaternion.
const float * get_column_major_data_ptr() const
Get a direct pointer to the const data in column major format, for API integration.
v3 get_translation() const
Get the current translation of the transformation matrix.
static m4 from_major(const v4 &major)
Create a matrix from the major, aka the diagonal.
n3 get_x_axis() const
Get the local X axis.
static m4 from(const AA &aa)
Create a rotation matrix, from an axis angle.
n3 get_y_axis() const
Get the local Y axis.