Re: [PyOpenGL-Users] Lost some GLUT functions?
Brought to you by:
mcfletch
From: Tom D. <td...@yo...> - 2005-01-22 23:13:33
|
man...@ti... wrote: > > print OpenGL.GLUT > print dir(OpenGL.GLUT) > > > This is the result (it seem really no gluLookAt). I'm using the last version > of glut (3.7): > > <module 'OpenGL.GLUT' from 'C:\Python23\lib\site-packages\OpenGL\GLUT.pyc'> > > > ['GLUT_ACCUM', 'GLUT_ACTIVE_ALT', 'GLUT_ACTIVE_CTRL', 'GLUT_ACTIVE_SHIFT', > 'GLUT_ALPHA', 'GLUT_API_VERSION', 'GLUT_BITMAP_8_BY_13', 'GLUT_BITMAP_9_BY_15', Should be GLU not GLUT.... >>> 'gluLookAt' in dir(OpenGL.GLUT) False >>> 'gluLookAt' in dir(OpenGL.GLU) True |