42 template<
typename Type>
45 template<
typename Type>
48 template<
typename Type>
54 template<
typename Type>
68 for (
int i = 0;
i < 9;
i++)
79 explicit Mat3(
const float *init_matrix)
81 for (
int i = 0;
i < 9;
i++)
86 explicit Mat3(Type m00, Type m01, Type m02, Type m10, Type m11, Type m12, Type m20, Type m21, Type m22)
94 explicit Mat3(
const double *init_matrix)
96 for (
int i = 0;
i < 9;
i++)
101 explicit Mat3(
const int64_t *init_matrix)
103 for (
int i = 0;
i < 9;
i++)
108 explicit Mat3(
const int32_t *init_matrix)
110 for (
int i = 0;
i < 9;
i++)
115 explicit Mat3(
const int16_t *init_matrix)
117 for (
int i = 0;
i < 9;
i++)
122 explicit Mat3(
const int8_t *init_matrix)
124 for (
int i = 0;
i < 9;
i++)
152 return rotate(angle, rotation.
x, rotation.
y, rotation.
z, normalize);
257 for (
int i = 0;
i < 9;
i++)
259 Type diff = second.matrix[
i] - first.matrix[
i];
260 if (diff < -epsilon || diff > epsilon)
return false;
293 operator Type
const*()
const {
return matrix; }
334 for (
int i = 0;
i < 9;
i++)
335 if (matrix[
i] != other.matrix[
i])
return false;
343 template<
typename Type>
346 template<
typename Type>
349 template<
typename Type>
352 template<
typename Type>
355 template<
typename Type>
358 template<
typename Type>
361 template<
typename Type>
364 template<
typename Type>
Mat3< Type > & operator=(const Mat3< Type > ©)
Copy assignment operator.
Definition: mat3.h:311
static Mat3< Type > subtract(const Mat3< Type > &matrix_1, const Mat3< Type > &matrix_2)
Subtract 2 matrices.
Definition: mat3.h:350
Mat3(const int8_t *init_matrix)
Constructs a 3x3 matrix (copied from 9, 8 bit integers)
Definition: mat3.h:122
static Mat3< Type > identity()
Definition: mat3.h:365
static Mat3< Type > scale(const Vec3< Type > &xy)
Create a 2d scale matrix.
Definition: mat3.h:180
2D matrix
Definition: mat2.h:41
Mat3< Type > operator+(const Mat3< Type > &add_matrix) const
Addition operator.
2D vector
Definition: line.h:43
const Type & operator[](int i) const
Operator that returns the matrix cell at the given index.
Definition: mat3.h:302
Type x
Definition: vec3.h:74
3D matrix
Definition: mat2.h:44
3D vector
Definition: line_ray.h:43
Mat3(const int16_t *init_matrix)
Constructs a 3x3 matrix (copied from 9, 16 bit integers)
Definition: mat3.h:115
Type x
Definition: vec2.h:75
Mat3< Type > & adjoint()
Creates the adjoint (or known as adjugate) of the matrix.
Mat3(const int32_t *init_matrix)
Constructs a 3x3 matrix (copied from 9, 32 bit integers)
Definition: mat3.h:108
Mat3(const Mat3< Type > ©)
Constructs a 3x3 matrix (copied)
Definition: mat3.h:66
Mat3< Type > & transpose()
Calculate the transpose of this matrix.
Type z
Definition: vec3.h:76
Mat3< double > Mat3d
Definition: mat3.h:369
Mat3(Type m00, Type m01, Type m02, Type m10, Type m11, Type m12, Type m20, Type m21, Type m22)
Constructs a 3x3 matrix (copied from specified values)
Definition: mat3.h:86
Type y
Definition: vec2.h:76
static Mat3< Type > translate(const Vec2< Type > &xy)
Create a 2d translation matrix.
Definition: mat3.h:198
static Mat3< Type > scale(Type x, Type y)
Create a 2d scale matrix.
static Mat3< Type > multiply(const Mat3< Type > &matrix_1, const Mat3< Type > &matrix_2)
Multiply 2 matrices.
Definition: mat3.h:344
static Mat3< Type > null()
Definition: mat3.h:362
EulerOrder
Euler angle rotation order.
Definition: angle.h:40
static Mat3< Type > rotate(float angle, Vec3< Type > rotation, bool normalize=true)
Create a 3d rotation matrix.
Definition: mat3.h:150
static Mat3< Type > translate(Type x, Type y)
Create a 2d translation matrix.
Mat3< Type > & inverse()
Create the matrix inverse. (Returns a zero matrix if the determinent = 0)
Mat3(const double *init_matrix)
Constructs a 3x3 matrix (copied from 9 doubles)
Definition: mat3.h:94
static bool is_equal(const Mat3< Type > &first, const Mat3< Type > &second, Type epsilon)
Returns true if equal within the bounds of an epsilon.
Definition: mat3.h:255
Mat3(const int64_t *init_matrix)
Constructs a 3x3 matrix (copied from 9, 64 bit integers)
Definition: mat3.h:101
static Mat3< Type > rotate(Type angle, Type x, Type y, Type z, bool normalize=true)
Create a 3d rotation matrix.
Mat3< Type > operator*(const Mat3< Type > &mult) const
Multiplication operator.
Mat3< float > Mat3f
Definition: mat3.h:368
const Type & operator[](unsigned int i) const
Operator that returns the matrix cell at the given index.
Definition: mat3.h:308
static Mat3< Type > add(const Mat3< Type > &matrix_1, const Mat3< Type > &matrix_2)
Add 2 matrices.
Definition: mat3.h:347
Mat3()
Constructs a 3x3 matrix (zero'ed)
Definition: mat3.h:59
Type y
Definition: vec3.h:75
Type matrix[9]
The matrix (in column-major format)
Definition: mat3.h:266
Type & operator[](unsigned int i)
Operator that returns the matrix cell at the given index.
Definition: mat3.h:305
Mat3< Type > operator-(const Mat3< Type > &sub_matrix) const
Subtraction operator.
bool is_equal(const Mat3< Type > &other, Type epsilon) const
Returns true if equal within the bounds of an epsilon.
Definition: mat3.h:290
double det() const
Calculate the matrix determinant.
Type & operator[](int i)
Operator that returns the matrix cell at the given index.
Definition: mat3.h:299
bool operator==(const Mat3< Type > &other) const
Equality operator.
Definition: mat3.h:332
Definition: Application/application.h:35
Mat3(const float *init_matrix)
Constructs a 3x3 matrix (copied from 9 floats)
Definition: mat3.h:79
4D matrix
Definition: mat2.h:47
bool operator!=(const Mat3< Type > &other)
Not-equal operator.
Definition: mat3.h:340
Mat3< int > Mat3i
Definition: mat3.h:367