:: drafts :: com :: sun :: star :: geometry ::

struct AffineMatrix2D
Description
This structure defines a 2 by 3 matrix.

This constitutes an affine mapping of a point in 2D to another point in 2D. The last line of a complete 3 by 3 matrix is omitted, since it is implicitely [0,0,1]. // TODO: Explain mapping, order of multiplication etc.


Elements' Summary
m00
m01
m02
m10
m11
m12
Elements' Details
m00
double m00;
m01
double m01;
m02
double m02;
m10
double m10;
m11
double m11;
m12
double m12;
Top of Page