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;
x translation
1st component of the transformation matrix
2nd component of the transformation matrix
y translation
3rd component of the transformation matrix
4th component of the transformation matrix
A pango.matrix.Matrix specifies a transformation between user-space and device coordinates.
The transformation is given by