PangoMatrix

PangoMatrix: @xx: 1st component of the transformation matrix @xy: 2nd component of the transformation matrix @yx: 3rd component of the transformation matrix @yy: 4th component of the transformation matrix @x0: x translation @y0: y translation

A structure specifying a transformation between user-space coordinates and device coordinates. The transformation is given by

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

extern (C)
struct PangoMatrix {
double xx;
double xy;
double yx;
double yy;
double x0;
double y0;
}

Meta