0

次の Python プログラムでは、PyOpenGL と GLUT を使用して、連続する GLUT ウィンドウが、マウスをそれらの上に置くだけでアクティブになります。どうすればそれを回避できますか?

from OpenGL.GL import *
from OpenGL.GLU import *
from OpenGL.GLUT import *

glutInit ()
glutInitDisplayMode (GLUT_RGB)
glutInitWindowSize (600, 400)

def displayFunc ():
    glClearColor (1, 1, 1, 1)       
    glClear (GL_COLOR_BUFFER_BIT)   

windows = []
for i in range (3):
    window = glutCreateWindow ('GLUT window {0}'.format (i))
    glutDisplayFunc (displayFunc)

glutMainLoop ()

Windows Vista、Python 2.7、および PyOpenGL 3.0.2 を使用しています

4

0 に答える 0