Minor doc edits.

This commit is contained in:
Carl Worth 2005-08-23 23:13:35 +00:00
parent 4047fa5077
commit ef8b5b6a50
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2005-08-23 Carl Worth <cworth@cworth.org>
* doc/public/tmpl/cairo-matrix.sgml: Minor doc edits.
2005-08-23 Carl Worth <cworth@cworth.org>
* doc/public/tmpl/cairo-matrix.sgml:

View file

@ -12,7 +12,7 @@
#cairo_matrix_t is used throughout cairo to convert between different
coordinate spaces. A #cairo_matrix_t holds an affine transformation,
such as a scale, rotation, shear, or a combination of these.
The transformation on a point (<literal>x</literal>,<literal>y</literal>)
The transformation of a point (<literal>x</literal>,<literal>y</literal>)
is given by:
</para>
<programlisting>
@ -21,8 +21,8 @@
</programlisting>
<para>
The current transformation matrix of a #cairo_t, represented as a
#cairo_matrix_t, defines the transformation from user space
coordinates to device coordinates. See cairo_get_matrix() and
#cairo_matrix_t, defines the transformation from user-space
coordinates to device-space coordinates. See cairo_get_matrix() and
cairo_set_matrix().
</para>