Transforms the distance vector (dx,dy) by matrix. This is similar to cairo.matrix.Matrix.transformPoint except that the translation components of the transformation are ignored. The calculation of the returned vector is as follows:
<programlisting> dx_new = xx * dx + xy * dy; dy_new = yx * dx + yy * dy; </programlisting>
X component of a distance vector. An in/out parameter
Y component of a distance vector. An in/out parameter
Transforms the distance vector (dx,dy) by matrix. This is similar to cairo.matrix.Matrix.transformPoint except that the translation components of the transformation are ignored. The calculation of the returned vector is as follows:
<programlisting> dx_new = xx * dx + xy * dy; dy_new = yx * dx + yy * dy; </programlisting>