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

  1. """The GLUT library implementation via ctypes"""
  2. from OpenGL.raw.GLUT import *
  3.  
  4. from OpenGL.GLUT.special import *
  5. from OpenGL.GLUT.fonts import *
  6. try:
  7.     from OpenGL.GLUT.freeglut import *
  8.     HAVE_FREEGLUT = False
  9. except ImportError, err:
  10.     HAVE_FREEGLUT = True
  11.  
  12.