Matrix

Matrix: @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>

struct Matrix {}

Disabled Default Constructor

A disabled default is present on this object. To use it, use one of the other constructors or a factory function.

Meta