blob: 34454657b139aaefc01dd52f8d7e093409c14d42 [file] [log] [blame]
Guido van Rossum5fdeeea1994-01-02 01:22:07 +00001\section{Built-in Module \sectcode{gl}}
Guido van Rossume47da0a1997-07-17 16:34:52 +00002\label{module-gl}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +00003\bimodindex{gl}
4
5This module provides access to the Silicon Graphics
6{\em Graphics Library}.
7It is available only on Silicon Graphics machines.
8
9\strong{Warning:}
10Some illegal calls to the GL library cause the Python interpreter to dump
11core.
12In particular, the use of most GL calls is unsafe before the first
13window is opened.
14
15The module is too large to document here in its entirety, but the
16following should help you to get started.
17The parameter conventions for the C functions are translated to Python as
18follows:
19
20\begin{itemize}
21\item
22All (short, long, unsigned) int values are represented by Python
23integers.
24\item
25All float and double values are represented by Python floating point
26numbers.
27In most cases, Python integers are also allowed.
28\item
29All arrays are represented by one-dimensional Python lists.
30In most cases, tuples are also allowed.
31\item
32\begin{sloppypar}
33All string and character arguments are represented by Python strings,
34for instance,
35\code{winopen('Hi There!')}
36and
37\code{rotate(900, 'z')}.
38\end{sloppypar}
39\item
40All (short, long, unsigned) integer arguments or return values that are
41only used to specify the length of an array argument are omitted.
42For example, the C call
43
44\bcode\begin{verbatim}
45lmdef(deftype, index, np, props)
46\end{verbatim}\ecode
Guido van Rossume47da0a1997-07-17 16:34:52 +000047%
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000048is translated to Python as
49
50\bcode\begin{verbatim}
51lmdef(deftype, index, props)
52\end{verbatim}\ecode
Guido van Rossume47da0a1997-07-17 16:34:52 +000053%
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000054\item
55Output arguments are omitted from the argument list; they are
56transmitted as function return values instead.
57If more than one value must be returned, the return value is a tuple.
58If the C function has both a regular return value (that is not omitted
59because of the previous rule) and an output argument, the return value
60comes first in the tuple.
61Examples: the C call
62
63\bcode\begin{verbatim}
64getmcolor(i, &red, &green, &blue)
65\end{verbatim}\ecode
Guido van Rossume47da0a1997-07-17 16:34:52 +000066%
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000067is translated to Python as
68
69\bcode\begin{verbatim}
70red, green, blue = getmcolor(i)
71\end{verbatim}\ecode
Guido van Rossume47da0a1997-07-17 16:34:52 +000072%
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000073\end{itemize}
74
75The following functions are non-standard or have special argument
76conventions:
77
78\renewcommand{\indexsubitem}{(in module gl)}
79\begin{funcdesc}{varray}{argument}
80%JHXXX the argument-argument added
81Equivalent to but faster than a number of
82\code{v3d()}
83calls.
84The \var{argument} is a list (or tuple) of points.
85Each point must be a tuple of coordinates
86\code{(\var{x}, \var{y}, \var{z})} or \code{(\var{x}, \var{y})}.
87The points may be 2- or 3-dimensional but must all have the
88same dimension.
89Float and int values may be mixed however.
90The points are always converted to 3D double precision points
91by assuming \code{\var{z} = 0.0} if necessary (as indicated in the man page),
92and for each point
93\code{v3d()}
94is called.
95\end{funcdesc}
96
97\begin{funcdesc}{nvarray}{}
98Equivalent to but faster than a number of
99\code{n3f}
100and
101\code{v3f}
102calls.
103The argument is an array (list or tuple) of pairs of normals and points.
104Each pair is a tuple of a point and a normal for that point.
105Each point or normal must be a tuple of coordinates
106\code{(\var{x}, \var{y}, \var{z})}.
107Three coordinates must be given.
108Float and int values may be mixed.
109For each pair,
110\code{n3f()}
111is called for the normal, and then
112\code{v3f()}
113is called for the point.
114\end{funcdesc}
115
116\begin{funcdesc}{vnarray}{}
117Similar to
118\code{nvarray()}
119but the pairs have the point first and the normal second.
120\end{funcdesc}
121
122\begin{funcdesc}{nurbssurface}{s_k\, t_k\, ctl\, s_ord\, t_ord\, type}
123% XXX s_k[], t_k[], ctl[][]
124%\itembreak
125Defines a nurbs surface.
126The dimensions of
127\code{\var{ctl}[][]}
128are computed as follows:
129\code{[len(\var{s_k}) - \var{s_ord}]},
130\code{[len(\var{t_k}) - \var{t_ord}]}.
131\end{funcdesc}
132
133\begin{funcdesc}{nurbscurve}{knots\, ctlpoints\, order\, type}
134Defines a nurbs curve.
135The length of ctlpoints is
136\code{len(\var{knots}) - \var{order}}.
137\end{funcdesc}
138
139\begin{funcdesc}{pwlcurve}{points\, type}
140Defines a piecewise-linear curve.
141\var{points}
142is a list of points.
143\var{type}
144must be
145\code{N_ST}.
146\end{funcdesc}
147
148\begin{funcdesc}{pick}{n}
149\funcline{select}{n}
150The only argument to these functions specifies the desired size of the
151pick or select buffer.
152\end{funcdesc}
153
154\begin{funcdesc}{endpick}{}
155\funcline{endselect}{}
156These functions have no arguments.
157They return a list of integers representing the used part of the
158pick/select buffer.
159No method is provided to detect buffer overrun.
160\end{funcdesc}
161
162Here is a tiny but complete example GL program in Python:
163
164\bcode\begin{verbatim}
165import gl, GL, time
166
167def main():
168 gl.foreground()
169 gl.prefposition(500, 900, 500, 900)
170 w = gl.winopen('CrissCross')
171 gl.ortho2(0.0, 400.0, 0.0, 400.0)
172 gl.color(GL.WHITE)
173 gl.clear()
174 gl.color(GL.RED)
175 gl.bgnline()
176 gl.v2f(0.0, 0.0)
177 gl.v2f(400.0, 400.0)
178 gl.endline()
179 gl.bgnline()
180 gl.v2f(400.0, 0.0)
181 gl.v2f(0.0, 400.0)
182 gl.endline()
183 time.sleep(5)
184
185main()
186\end{verbatim}\ecode
Guido van Rossume47da0a1997-07-17 16:34:52 +0000187%
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000188\section{Standard Modules \sectcode{GL} and \sectcode{DEVICE}}
Guido van Rossum86cb0921995-03-20 12:59:56 +0000189\nodename{GL and DEVICE}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000190\stmodindex{GL}
191\stmodindex{DEVICE}
192
193These modules define the constants used by the Silicon Graphics
194{\em Graphics Library}
195that C programmers find in the header files
196\file{<gl/gl.h>}
197and
198\file{<gl/device.h>}.
199Read the module source files for details.