我正在使用 pyglet 在 python 中进行 3d 可视化,并且需要检索模型视图和投影矩阵来进行一些挑选。我使用以下方法定义我的窗口:
from pyglet.gl import *
from pyglet.window import *
win = Window(fullscreen=True, visible=True, vsync=True)
然后我定义了我所有的窗口事件:
@win.event
def on_draw():
# All of the drawing happens here
@win.event
def on_mouse_release(x, y, button, modifiers):
if button == mouse.LEFT:
# This is where I'm having problems
a = GLfloat()
mvm = glGetFloatv(GL_MODELVIEW_MATRIX, a)
print a.value
当我点击时,它会打印...
1.0
Segmentation fault
和崩溃。使用 GL_MODELVIEW_MATRIX 调用 glGetFloatv 应该返回 16 个值,我不确定如何处理。我尝试定义 a = GLfloat*16 但出现以下错误:
ctypes.ArgumentError: argument 2: <type 'exceptions.TypeError'>: expected LP_c_float instance instead of _ctypes.PyCArrayType
如何检索这些矩阵?