|
mupdf
|
#include <geometry.h>
Public Attributes | |
| float | a |
| float | b |
| float | c |
| float | d |
| float | e |
| float | f |
fz_matrix is a row-major 3x3 matrix used for representing transformations of coordinates throughout MuPDF.
Since all points reside in a two-dimensional space, one vector is always a constant unit vector; hence only some elements may vary in a matrix. Below is how the elements map between different representations.
/ a b 0 \ | c d 0 | normally represented as [ a b c d e f ]. \ e f 1 /
| float fz_matrix::a |
| float fz_matrix::b |
| float fz_matrix::c |
| float fz_matrix::d |
| float fz_matrix::e |
| float fz_matrix::f |