16#ifndef AEONGUI_MATRIX2X3_H
17#define AEONGUI_MATRIX2X3_H
57 DLL
Matrix2x3 (
const std::array<const double, 6> aMatrixArray );
86 DLL
const double&
operator[] (
size_t aIndex )
const;
99 DLL
Matrix2x3 ParseSVGTransform (
const std::string& value );
2x3 affine transformation matrix.
Definition Matrix2x3.hpp:37
Matrix2x3()
Default constructor. Initializes to the identity matrix.
Definition Matrix2x3.cpp:25
const double & operator[](size_t aIndex) const
Access a matrix element by index.
Definition Matrix2x3.cpp:87
Matrix2x3 & operator*=(const Matrix2x3 &aRight)
Multiply this matrix by another (post-multiply).
Definition Matrix2x3.cpp:74
2D vector of doubles.
Definition Vector2.hpp:31