PangoMatrix

A pango.matrix.Matrix specifies a transformation between user-space and device coordinates.

The transformation is given by

x_device = x_user * matrix->xx + y_user * matrix->xy + matrix->x0;
y_device = x_user * matrix->yx + y_user * matrix->yy + matrix->y0;

Members

Variables

x0
double x0;

x translation

xx
double xx;

1st component of the transformation matrix

xy
double xy;

2nd component of the transformation matrix

y0
double y0;

y translation

yx
double yx;

3rd component of the transformation matrix

yy
double yy;

4th component of the transformation matrix