1PyOpenGL is an interface between the Python programming language and the OpenGL 2library (and related libraries). The package provides interfaces to: 3 4 - The OpenGL library itself, which is a three-dimensional graphical 5 rendering interface. For more information, visit 6 http://www.opengl.org. 7 8 - The GLU library which provides access to routines for doing 9 quadrics, tesselation etc. 10 11 - The GLUT (GL UTilitity) library from Mark Kilgard, which provides a 12 windowing environment. 13 14 - The Togl (Tk/OpenGL) widget from Brian Paul and Ben Benderson (an 15 alternative to GLUT which interfaces to Tk). 16 17The Python bindings offer some value-added tools in addition to the 18standard API, including support for fast processing of arrays of 19coordinates, trackball support, etc. 20 21WWW: http://pyopengl.sourceforge.net/ 22