Guido van Rossum | 453bd40 | 1992-03-30 13:18:37 +0000 | [diff] [blame] | 1 | These demos run only on SGI machines and require the 'gl' built-in module. |
| 2 | The demonstrate the abilities of SGI's GL library as well as the ease of |
| 3 | GL programming in Python. Most demos require the Z-buffer (aka |
| 4 | 24-bitplane) option. Press ESC to get out of any of them. |
| 5 | |
| 6 | backface.py Demonstrates the 'backface' GL function. |
| 7 | |
| 8 | kites.py Show 3 flying kites. Demonstrates the rendering speed |
| 9 | obtainable by Python programs. |
| 10 | |
| 11 | mclock.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 | |
| 16 | mixing.py Demonstrates the effect of color mixing: through |
| 17 | frequent color switching it gives the effect of white |
| 18 | light. |
| 19 | |
| 20 | nurbs.py A simple demonstration of the 'nurbs' GL functions. |
| 21 | Press left mouse button to toggle surface trimming. |
| 22 | |
| 23 | zrgb.py Displays a 3-D Gouraud-shaded figure which can be moved |
| 24 | around with the mouse. |
| 25 | |
| 26 | glstdwin/ 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. |