[latex3-commits] [l3svn] branch master updated: Various bits of documentation
noreply at latex-project.org
noreply at latex-project.org
Sun May 15 23:58:43 CEST 2016
This is an automated email from the git hooks/post-receive script.
joseph pushed a commit to branch master
in repository l3svn.
The following commit(s) were added to refs/heads/master by this push:
new b19abfa Various bits of documentation
b19abfa is described below
commit b19abfa7ded027383109571faa6944c408371bfd
Author: Joseph Wright <joseph.wright at morningstar2.co.uk>
Date: Sun May 15 22:58:41 2016 +0100
Various bits of documentation
---
l3kernel/l3drivers.dtx | 44 ++++++++++++++++++++++++++++++++++----------
1 file changed, 34 insertions(+), 10 deletions(-)
diff --git a/l3kernel/l3drivers.dtx b/l3kernel/l3drivers.dtx
index c7e91ab..19fc6a7 100755
--- a/l3kernel/l3drivers.dtx
+++ b/l3kernel/l3drivers.dtx
@@ -203,27 +203,51 @@
% \cs{__driver_draw_move:nn} \Arg{x} \Arg{y}
% \end{syntax}
% Moves the current drawing reference point to (\meta{x}, \meta{y});
-% any transformation matrix will apply.
+% any active transformation matrix will apply.
% \end{function}
%
% \begin{function}{\__driver_draw_lineto:nn}
% \begin{syntax}
-% \cs{__driver_draw_lineto:nn} \Arg{x} {y}
+% \cs{__driver_draw_lineto:nn} \Arg{x} \Arg{y}
% \end{syntax}
% Adds a path from the current drawing reference point to
-% (\meta{x}, \meta{y}; any transformation matrix will apply. Note that
-% nothing is drawn until a fill or stroke operation is applied, and that
+% (\meta{x}, \meta{y}); any active transformation matrix will apply. Note
+% that nothing is drawn until a fill or stroke operation is applied, and that
% the path may be discarded or used as a clip without appearing itself.
% \end{function}
%
-% \begin{function}{\__driver_draw_curveto:nn}
+% \begin{function}{\__driver_draw_curveto:nnnnnn}
% \begin{syntax}
-% \cs{__driver_draw_lineto:nn} \Arg{x} {y}
+% \cs{__driver_draw_curveto:nnnnnn} \Arg{x_1} \Arg{y_1}
+% \Arg{x_2} \Arg{y_2} \Arg{x_3} \Arg{y_3}
% \end{syntax}
-% Adds a path from the current drawing reference point to
-% (\meta{x}, \meta{y}; any transformation matrix will apply. Note that
-% nothing is drawn until a fill or stroke operation is applied, and that
-% the path may be discarded or used as a clip without appearing itself.
+% Adds a Bezier curve path from the current drawing reference point to
+% (\meta{x_3}, \meta{y_3}), using (\meta{x_1}, \meta{y_1}) and
+% (\meta{x_2}, \meta{y_2}) as control points; any active transformation
+% matrix will apply. Note that nothing is drawn until a fill or stroke
+% operation is applied, and that the path may be discarded or used as a clip
+% without appearing itself.
+% \end{function}
+%
+% \begin{function}{\__driver_draw_rectangle:nnnn}
+% \begin{syntax}
+% \cs{__driver_draw_rectangle:nnnn} \Arg{x_1} \Arg{y_1} \Arg{x_2} \Arg{y_2}
+% \end{syntax}
+% Adds rectangular path from (\meta{x_1}, \meta{y_1}) to
+% (\meta{x_2}, \meta{y_2}); any active transformation
+% matrix will apply. Note that nothing is drawn until a fill or stroke
+% operation is applied, and that the path may be discarded or used as a clip
+% without appearing itself.
+% \end{function}
+%
+% \begin{function}{\__driver_draw_closepath:}
+% \begin{syntax}
+% \cs{__driver_draw_closepath:}
+% \end{syntax}
+% Closes an existing path, adding a line from the current point to the
+% start of path. Note that nothing is drawn until a fill or stroke
+% operation is applied, and that the path may be discarded or used as a clip
+% without appearing itself.
% \end{function}
%
% \end{documentation}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the latex3-commits
mailing list