hello:
I downloaded PyOpenGL-2.0.2.01 and installed it successful.
But when I run pyopengl using python2.4 at FC4:
>>> import OpenGL.GL
>>> glEnable(GL_COLOR_TABLE)
Traceback (most recent call last):
File "<stdin>", line 1, in ?
NameError: name 'GL_COLOR_TABLE' is not defined
>>>
When I run :
>>> dir(OpenGL.GL)
I can't find "GL_COLOR_TABLE" and "glColorTable" also.
What can I do for that?
Thanks !
|