在win7+python3.5环境下配置opengl,并显示三维模型
首先安装opengl:
已经安装python的系统会自动安装pip,所以只需要一句pip命令就可以安装opengl了,命令如下:
pip install PyOpenGL PyOpenGL_accelerate
然后在python 中import相关功能,运行后会出现错误
OpenGL.error.NullFunctionError: Attempt to call an undefined function glutInit, check for bool(glutInit) before calling
或者:
SyntaxError: multiple statements found while compiling a single statement
可能是缺少相关dll文件,可以在这里下载到 http://pan.baidu.com/s/1dFhC8G5
拷到你建立的工程目录下,就是你写的程序的目录下就可以了。
然后运行下面的程序,就应该能够显示茶壶模型了。
from OpenGL.GL import *
from OpenGL.GLU import *
from OpenGL.GLUT import *
def drawFunc():
#清楚之前画面
glClear(GL_COLOR_BUFFER_BIT)
glRotatef(0.1, 0,5,0) #(角度,x,y,z)
glutWireTeapot(0.5)
#刷新显示
glFlush()
#使用glut初始化OpenGL
gl