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