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 / GLU / __init__.py next >
Encoding:
Python Source  |  2008-12-07  |  403 b   |  15 lines

  1. """The GLU library implementation via ctypes"""
  2. from OpenGL import platform
  3. from OpenGL.error import *
  4. from OpenGL.raw.GLU import *
  5. from OpenGL.raw.GLU.annotations import *
  6.  
  7. from OpenGL.GLU.quadrics import *
  8. from OpenGL.GLU.projection import *
  9. from OpenGL.GLU.tess import *
  10. from OpenGL.GLU.glunurbs import *
  11. import ctypes
  12.  
  13. gluErrorString.restype = ctypes.c_char_p
  14. gluGetString.restype = ctypes.c_char_p
  15.