62 inline Matrix2D3x3(
float r0c0,
float r1c0,
float r2c0,
float r0c1,
float r1c1,
float r2c1,
float r0c2,
float r1c2,
float r2c2) {
63 set(r0c0, r1c0, r2c0, r0c1, r1c1, r2c1, r0c2, r1c2, r2c2);
79 inline Matrix2D3x3&
set(
float r0c0,
float r1c0,
float r2c0,
float r0c1,
float r1c1,
float r2c1,
float r0c2,
float r1c2,
float r2c2) {
176 auto r = angle * 3.1415927f / 180.0f;
221 array<float, 9> _data;
341 return this->
equals(m) ==
false;
349 return (array<float, 9>&)
data;
361 (m2.
data[0] * t) + ((1.0f - t) * m1.
data[0]),
362 (m2.
data[1] * t) + ((1.0f - t) * m1.
data[1]),
363 (m2.
data[2] * t) + ((1.0f - t) * m1.
data[2]),
364 (m2.
data[3] * t) + ((1.0f - t) * m1.
data[3]),
365 (m2.
data[4] * t) + ((1.0f - t) * m1.
data[4]),
366 (m2.
data[5] * t) + ((1.0f - t) * m1.
data[5]),
367 (m2.
data[6] * t) + ((1.0f - t) * m1.
data[6]),
368 (m2.
data[7] * t) + ((1.0f - t) * m1.
data[7]),
369 (m2.
data[8] * t) + ((1.0f - t) * m1.
data[8])
static float cos(float value)
Returns the cosine of an angle.
static constexpr float EPSILON
static int32_t abs(int32_t value)
Returns absolute value.
static float sin(float value)
Returns the sine of an angle.
bool operator!=(const Matrix2D3x3 &m) const
Non equality comparison operator.
Vector2 multiply(const Vector2 &v) const
Multiplies a vector with this matrix into destination vector.
Matrix2D3x3 operator*(const float f) const
Operator * (float)
array< float, 9 > & getArray() const
Returns array data.
static Matrix2D3x3 interpolateLinear(const Matrix2D3x3 &m1, const Matrix2D3x3 &m2, float t)
Interpolates between matrix 1 and matrix 2 by 0f<=t<=1f linearly.
Matrix2D3x3(const array< float, 9 > &m)
Public constructor.
bool operator==(const Matrix2D3x3 &m) const
Equality comparison operator.
Matrix2D3x3 & translate(const Vector2 &v)
Sets up a translation matrix.
Matrix2D3x3(const Matrix2D3x3 &matrix)
Public constructor.
Matrix2D3x3 & scale(const Vector2 &v)
Scales this matrix by given vector.
static Matrix2D3x3 rotateAroundTextureCenter(float angle)
Creates a rotation matrix that rotates around texture center by given angle.
Matrix2D3x3 & identity()
Setup identity matrix.
Matrix2D3x3(float r0c0, float r1c0, float r2c0, float r0c1, float r1c1, float r2c1, float r0c2, float r1c2, float r2c2)
Public constructor.
Matrix2D3x3 & operator*=(const Matrix2D3x3 &m)
Operator *=.
Matrix2D3x3 & set(float r0c0, float r1c0, float r2c0, float r0c1, float r1c1, float r2c1, float r0c2, float r1c2, float r2c2)
Set up matrix by values.
Matrix2D3x3()
Public constructor.
static Matrix2D3x3 rotateAroundPoint(const Vector2 &point, float angle)
Creates a rotation matrix that rotates around given point by given angle.
const float & operator[](int i) const
Const array access operator.
float & operator[](int i)
Array access operator.
Matrix2D3x3 & set(const array< float, 9 > &m)
Sets up this matrix by matrix m.
Matrix2D3x3 & multiply(const Matrix2D3x3 &m)
Multiplies this matrix with another matrix.
Matrix2D3x3 & set(const Matrix2D3x3 &m)
Sets up this matrix by matrix m.
Matrix2D3x3 clone() const
Clones this matrix.
bool equals(const Matrix2D3x3 &m) const
Returns if this matrix equals m.
Matrix2D3x3 & rotate(float angle)
Creates a rotation matrix.
Matrix2D3x3 & scale(float s)
Scales this matrix.
Vector2 clone() const
Clones the vector.
Vector2 & scale(const float scale)
Scale this vector.