blob: 7a8caaeefb1e1f1c208b1c55589a8026af3af156 [file] [log] [blame]
Guido van Rossum453bd401992-03-30 13:18:37 +00001These demos run only on SGI machines and require the 'gl' built-in module.
2The demonstrate the abilities of SGI's GL library as well as the ease of
3GL programming in Python. Most demos require the Z-buffer (aka
424-bitplane) option. Press ESC to get out of any of them.
5
6backface.py Demonstrates the 'backface' GL function.
7
8kites.py Show 3 flying kites. Demonstrates the rendering speed
9 obtainable by Python programs.
10
11mclock.py A colorful clock with more options than you can
12 remember. Works on 8-bit machines, but allows more
13 colors on 24-bit machines. See mclock.doc for more
14 info.
15
16mixing.py Demonstrates the effect of color mixing: through
17 frequent color switching it gives the effect of white
18 light.
19
20nurbs.py A simple demonstration of the 'nurbs' GL functions.
21 Press left mouse button to toggle surface trimming.
22
23zrgb.py Displays a 3-D Gouraud-shaded figure which can be moved
24 around with the mouse.
25
26glstdwin/ This is quite different: a partial STDWIN emulation
27 using GL! Requires only small changes to Python
28 programs that use STDWIN. Some features not yet
29 implemented, e.g., scroll bars.