Matrix.init_

void init_(double xx, double yx, double xy, double yy, double x0, double y0)

Sets matrix to be the affine transformation given by xx, yx, xy, yy, x0, y0. The transformation is given by:

<programlisting>

x_new = xx x + xy y + x0; y_new = yx x + yy y + y0;

</programlisting>

Parameters

xxxx component of the affine transformation
yxyx component of the affine transformation
xyxy component of the affine transformation
yyyy component of the affine transformation
x0X translation component of the affine transformation
y0Y translation component of the affine transformation