home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Multimedia / k3d-setup-0.7.11.0.exe / lib / site-packages / OpenGL / GL / __init__.py next >
Encoding:
Python Source  |  2008-12-07  |  755 b   |  29 lines

  1. """OpenGL.GL, the core GL library and extensions to it"""
  2. from OpenGL.raw.GL import *
  3. from OpenGL.raw.GL.annotations import *
  4.  
  5. from OpenGL.GL.pointers import *
  6. from OpenGL.GL.glget import *
  7. from OpenGL.GL.images import *
  8. from OpenGL.GL.exceptional import *
  9. from OpenGL.error import *
  10.  
  11. from OpenGL.GL.VERSION.GL_1_2 import *
  12. from OpenGL.GL.VERSION.GL_1_3 import *
  13. from OpenGL.GL.VERSION.GL_1_4 import *
  14. from OpenGL.GL.VERSION.GL_1_5 import *
  15. from OpenGL.GL.VERSION.GL_2_0 import *
  16. from OpenGL.GL.VERSION.GL_2_1 import *
  17. from OpenGL.GL.VERSION.GL_3_0 import *
  18.  
  19. GLerror = GLError
  20.  
  21. # Now the aliases...
  22. glRotate = glRotated
  23. glTranslate = glTranslated
  24. glLight = glLightfv
  25. glTexCoord = glTexCoord2d
  26. glScale = glScaled
  27. #glColor = glColor3f
  28. glNormal = glNormal3d
  29.