Gamp v0.0.7-36-g24b1eb6
Gamp: Graphics, Audio, Multimedia and Processing
|
Represents a affine 2x3 transformation matrix in column major order (memory layout). More...
#include <affine_transform.hpp>
Public Member Functions | |
constexpr | AffineTransform () noexcept |
Initialized to identity. | |
constexpr | AffineTransform (AffineTransform &&o) noexcept=default |
constexpr | AffineTransform (const AffineTransform &o) noexcept=default |
constexpr | AffineTransform (const float m00_, const float m10_, const float m01_, const float m11_, const float m02_, const float m12_) noexcept |
AffineTransform (const float mat2xN[], const jau::nsize_t mat_len) noexcept | |
AffineTransform & | concat (const AffineTransform &tR) noexcept |
Concatenates the given matrix to this. | |
AffineTransform | createInverse () const |
void | deltaTransform (const float src[], float dst[], size_t length) const noexcept |
float | determinant () const noexcept |
constexpr bool | equals (const AffineTransform &o, const float epsilon=std::numeric_limits< float >::epsilon()) const noexcept |
void | getMatrix (float mat2xN[], const jau::nsize_t mat_len) const noexcept |
AffineTransformType | getType () const noexcept |
void | inverseTransform (const float src[], float dst[], size_t length) const |
bool | isIdentity () const noexcept |
constexpr AffineTransform & | operator= (AffineTransform &&) noexcept=default |
constexpr AffineTransform & | operator= (const AffineTransform &) noexcept=default |
constexpr bool | operator== (const AffineTransform &rhs) const noexcept |
AffineTransform & | preConcat (const AffineTransform &tL) noexcept |
Pre-concatenates the given matrix to this. | |
AABBox3f & | resizeBox (AABBox3f &box, const AABBox3f &newBox) noexcept |
Resize the aabbox3f to encapsulate another AABox, which will be transformed on the fly first. | |
AffineTransform & | rotate (const float angle, AffineTransform &tmp) noexcept |
AffineTransform & | rotate (const float angle, const float px, const float py, AffineTransform &tmp) noexcept |
AffineTransform & | scale (const float scx, const float scy, AffineTransform &tmp) noexcept |
float | scaleX () const noexcept |
float | scaleY () const noexcept |
AffineTransform & | set (const float m00_, const float m10_, const float m01_, const float m11_, const float m02_, const float m12_) noexcept |
AffineTransform & | setToIdentity () noexcept |
AffineTransform & | setToRotation (const float angle) noexcept |
AffineTransform & | setToRotation (const float angle, const float px, const float py) noexcept |
AffineTransform & | setToScale (const float scx, const float scy) noexcept |
AffineTransform & | setToShear (const float shx, const float shy) noexcept |
AffineTransform & | setToTranslation (const float mx, const float my) noexcept |
AffineTransform & | shear (const float shx, const float shy, AffineTransform &tmp) noexcept |
float | shearX () const noexcept |
float | shearY () const noexcept |
std::string | toString () const noexcept |
AABBox3f & | transform (const AABBox3f &src, AABBox3f &dst) const noexcept |
float * | transform (const float src[], float dst[]) const noexcept |
void | transform (const float src[], float dst[], size_t length) const noexcept |
Vec2f | transform (const Vec2f &src) const noexcept |
Vec2f & | transform (const Vec2f &src, Vec2f &dst) const noexcept |
Vec3f | transform (const Vec3f &src) const noexcept |
Vec3f & | transform (const Vec3f &src, Vec3f &dst) const noexcept |
AffineTransform & | translate (const float mx, const float my, AffineTransform &tmp) noexcept |
float | translateX () const noexcept |
float | translateY () const noexcept |
Static Public Member Functions | |
static AffineTransform | mul (const AffineTransform &tL, const AffineTransform &tR) noexcept |
Multiply matrix of two AffineTransform objects. | |
Static Public Attributes | |
static constexpr const float | ZERO = (float)1E-10 |
The min absolute value equivalent to zero, aka EPSILON. | |
Represents a affine 2x3 transformation matrix in column major order (memory layout).
Field notation row-column: m10 (row 1, column 0).
Definition at line 52 of file affine_transform.hpp.
|
inlineconstexprnoexcept |
Initialized to identity.
Definition at line 79 of file affine_transform.hpp.
|
inlineconstexprnoexcept |
Definition at line 86 of file affine_transform.hpp.
|
inlinenoexcept |
mat2xN | either a 2x2 or 2x3 matrix depending on mat_len |
mat_len | either 6 for 2x3 matrix or 4 for 2x2 matrix |
Definition at line 97 of file affine_transform.hpp.
|
constexprdefaultnoexcept |
|
constexprdefaultnoexcept |
|
constexprdefaultnoexcept |
|
constexprdefaultnoexcept |
|
inlinenoexcept |
Definition at line 133 of file affine_transform.hpp.
|
inlinenoexcept |
Definition at line 175 of file affine_transform.hpp.
|
inlinenoexcept |
Definition at line 177 of file affine_transform.hpp.
|
inlinenoexcept |
Definition at line 179 of file affine_transform.hpp.
|
inlinenoexcept |
Definition at line 181 of file affine_transform.hpp.
|
inlinenoexcept |
Definition at line 183 of file affine_transform.hpp.
|
inlinenoexcept |
Definition at line 185 of file affine_transform.hpp.
|
inlinenoexcept |
Definition at line 187 of file affine_transform.hpp.
|
inlinenoexcept |
mat2xN | either a 2x2 or 2x3 matrix depending on mat_len |
mat_len | either 6 for 2x3 matrix or 4 for 2x2 matrix |
Definition at line 193 of file affine_transform.hpp.
|
inlinenoexcept |
Definition at line 204 of file affine_transform.hpp.
|
inlinenoexcept |
Definition at line 206 of file affine_transform.hpp.
|
inlinenoexcept |
Definition at line 217 of file affine_transform.hpp.
|
inlinenoexcept |
Definition at line 224 of file affine_transform.hpp.
|
inlinenoexcept |
Definition at line 237 of file affine_transform.hpp.
|
inlinenoexcept |
Definition at line 249 of file affine_transform.hpp.
|
inlinenoexcept |
Definition at line 262 of file affine_transform.hpp.
|
inlinenoexcept |
Definition at line 280 of file affine_transform.hpp.
|
inlinenoexcept |
Definition at line 288 of file affine_transform.hpp.
|
inlinenoexcept |
Definition at line 292 of file affine_transform.hpp.
|
inlinenoexcept |
Definition at line 296 of file affine_transform.hpp.
|
inlinenoexcept |
Definition at line 300 of file affine_transform.hpp.
|
inlinenoexcept |
Definition at line 304 of file affine_transform.hpp.
|
inlinestaticnoexcept |
Multiply matrix of two AffineTransform objects.
tL | - the AffineTransform object is a multiplicand (left argument) |
tR | - the AffineTransform object is a multiplier (right argument) |
Definition at line 315 of file affine_transform.hpp.
|
inlinenoexcept |
Concatenates the given matrix to this.
Implementations performs the matrix multiplication:
[this] = [this] X [tR]
tR | the right-argument of the matrix multiplication |
Definition at line 336 of file affine_transform.hpp.
|
inlinenoexcept |
Pre-concatenates the given matrix to this.
Implementations performs the matrix multiplication:
[this] = [tL] X [this]
tL | the left-argument of the matrix multiplication |
Definition at line 359 of file affine_transform.hpp.
|
inline |
Definition at line 371 of file affine_transform.hpp.
|
inlinenoexcept |
src | |
dst |
src | float[2] source of transformation |
dst | float[2] destination of transformation, maybe be equal to src |
Definition at line 427 of file affine_transform.hpp.
|
inlinenoexcept |
Definition at line 435 of file affine_transform.hpp.
|
inlinenoexcept |
src | source of transformation |
dst | destination of transformation, maybe be equal to src |
Definition at line 466 of file affine_transform.hpp.
src | source of transformation |
Definition at line 478 of file affine_transform.hpp.
|
inlinenoexcept |
src | source of transformation |
dst | destination of transformation, maybe be equal to src |
Definition at line 490 of file affine_transform.hpp.
src | source of transformation |
dst | destination of transformation, maybe be equal to src |
Definition at line 515 of file affine_transform.hpp.
|
inlinenoexcept |
Resize the aabbox3f to encapsulate another AABox, which will be transformed on the fly first.
newBox | aabbox3f to be encapsulated in |
t | the AffineTransform applied on newBox on the fly |
tmpV3 | temporary storage |
Definition at line 531 of file affine_transform.hpp.
|
inlinenoexcept |
src | |
dst |
Definition at line 549 of file affine_transform.hpp.
|
inline |
src | |
dst |
NoninvertibleTransformException | Vertex& inverseTransform(const Vertex& src, Vertex& dst) const { const float det = getDeterminant(); if (std::abs(det) < ZERO) { throw new NoninvertibleTransformException(determinantIsZero); } const float x = src.x() - m02; const float y = src.y() - m12; dst.setCoord((x * m11 - y * m01) / det, (y * m00 - x * m10) / det, src.z()); return dst; } |
Definition at line 577 of file affine_transform.hpp.
|
inlinenoexcept |
Definition at line 592 of file affine_transform.hpp.
|
inlineconstexprnoexcept |
Definition at line 597 of file affine_transform.hpp.
|
inlineconstexprnoexcept |
Definition at line 609 of file affine_transform.hpp.
|
staticconstexpr |
The min absolute value equivalent to zero, aka EPSILON.
Definition at line 76 of file affine_transform.hpp.