diff options
author | Fred Drake <fdrake@acm.org> | 1998-03-17 06:33:25 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-03-17 06:33:25 (GMT) |
commit | cce1090d49ba91cdc06c60d8a2af04d057abe7dc (patch) | |
tree | 8b866b9986508cfb7cec89ab4fb5e1c269756b8f /Doc/lib/libgl.tex | |
parent | c9a4438c16c66af5b196adf172fd3416ac4ec9d3 (diff) | |
download | cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.zip cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.tar.gz cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.tar.bz2 |
Change "\," to just "," in function signatures. This is easier to maintain,
works better with LaTeX2HTML, and allows some simplification of the python.sty
macros.
Diffstat (limited to 'Doc/lib/libgl.tex')
-rw-r--r-- | Doc/lib/libgl.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/lib/libgl.tex b/Doc/lib/libgl.tex index b694d86..7208695 100644 --- a/Doc/lib/libgl.tex +++ b/Doc/lib/libgl.tex @@ -119,7 +119,7 @@ Similar to but the pairs have the point first and the normal second. \end{funcdesc} -\begin{funcdesc}{nurbssurface}{s_k\, t_k\, ctl\, s_ord\, t_ord\, type} +\begin{funcdesc}{nurbssurface}{s_k, t_k, ctl, s_ord, t_ord, type} % XXX s_k[], t_k[], ctl[][] Defines a nurbs surface. The dimensions of @@ -129,13 +129,13 @@ are computed as follows: \code{[len(\var{t_k}) - \var{t_ord}]}. \end{funcdesc} -\begin{funcdesc}{nurbscurve}{knots\, ctlpoints\, order\, type} +\begin{funcdesc}{nurbscurve}{knots, ctlpoints, order, type} Defines a nurbs curve. The length of ctlpoints is \code{len(\var{knots}) - \var{order}}. \end{funcdesc} -\begin{funcdesc}{pwlcurve}{points\, type} +\begin{funcdesc}{pwlcurve}{points, type} Defines a piecewise-linear curve. \var{points} is a list of points. |