在3D空间中移动图像

时间:2011-10-07 00:15:49

标签: python opengl pyglet

我正在尝试在python中创建徽标可视化,我想在3D空间中设置一些图像的动画,使得图像始终“面向”屏幕的中心,图像在一些固定的路径上移动。我之前使用Vizard使用python完成了这个,但是,我想在一个“免费”和跨平台庄园中这样做。

使用pyglet来获取图像化映射四边形的句柄是最快的(读取最短的代码量),我可以操纵所述四边形的位置和方向吗?

1 个答案:

答案 0 :(得分:6)

以下是我能想出的最简单的代码,允许我将图像定位在(0,0,-10)位置:

#!/usr/bin/env python                                                           
import pyglet
from pyglet.gl import *

window = pyglet.window.Window()
glEnable(GL_DEPTH_TEST)

image = pyglet.image.load('imgs/appfolio.png')
texture = image.get_texture()
glEnable(texture.target)
glBindTexture(texture.target, texture.id)
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, image.width, image.height,
             0, GL_RGBA, GL_UNSIGNED_BYTE,
             image.get_image_data().get_data('RGBA', image.width * 4))

rect_w = float(image.width) / image.height
rect_h = 1

@window.event
def on_draw():
    glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT)
    glLoadIdentity()
    glTranslatef(0, 0, -10)
    glBindTexture(texture.target, texture.id)
    glBegin(GL_QUADS)
    glTexCoord2f(0.0, 0.0); glVertex3f(-rect_w, -rect_h, 0.0)
    glTexCoord2f(1.0, 0.0); glVertex3f( rect_w, -rect_h, 0.0)
    glTexCoord2f(1.0, 1.0); glVertex3f( rect_w,  rect_h, 0.0)
    glTexCoord2f(0.0, 1.0); glVertex3f(-rect_w,  rect_h, 0.0)
    glEnd()

def on_resize(width, height):
    glViewport(0, 0, width, height)
    glMatrixMode(GL_PROJECTION)
    glLoadIdentity()
    gluPerspective(65.0, width/float(height), 0.1, 1000.0)
    glMatrixMode(GL_MODELVIEW)

window.on_resize = on_resize # we need to replace so can't use @window.event    
pyglet.app.run()

我发现最困难的部分是必须更换on_resize函数才能按预期工作,因为默认的正交投影不起作用。

我发现Jess Hill's pyglet conversionNeHe tutorial on texture mapping最有帮助。

完整的徽标可视化代码可以在我刚刚写的标题为“Moving Images in 3D Space with Pyglet”的博客文章中找到。