我正在尝试用Python 3.4和Pyglet 1.2绘制一个八角形,它使用OpenGL。我的代码似乎是正确的,但是对于单个帧,绘图有时在随机位置(大多数时间为0,0(左下角))的随机颜色(白色或黑色的大部分时间)上具有额外的三角形。以下是一些例子:
有些帧虽然完美:
这是我的简短方法:
from pyglet.gl import GL_TRIANGLES
from itertools import chain
C = 0.707 # const
def octagon (x, y, r, c, b, g):
""" Returns a vertex list of regular octagon with center at (x, y) and corners
distanced r away. Paints center and corners. Adds to batch b in group g. """
i = list(chain.from_iterable( (0, x+1, x+2) for x in range(8) ) )
i.extend( (0, 1, 8) )
p = x, y
p += x-r, y, x+int(-C*r), y+int(C*r), x, y+r, x+int(C*r), y+int(C*r)
p += x+r, y, x+int(C*r), y+int(-C*r), x, y-r, x+int(-C*r), y+int(-C*r)
return b.add_indexed(9, GL_TRIANGLES, g, i, ('v2i', p), ('c3B', c))
这是我的测试代码:
import pyglet
from circle import octagon
# Constants
WIN = 900, 900, 'TEST', False, 'tool' # x, y, caption, resizable, style
CENTER = WIN[0] // 2, WIN[1] // 2
RADIUS = 100
SPEED = 0.1 # duration of frame in seconds
# Color constants
WHITE = (255, 255, 255) # for center
RED = (255, 0, 0) # for corners
# Variables
win = pyglet.window.Window(*WIN)
batch = pyglet.graphics.Batch() # recreate batch every time
def on_step(dt):
global batch
batch = pyglet.graphics.Batch()
octagon(CENTER[0], CENTER[1], RADIUS, WHITE+RED*8, batch, None)
@win.event
def on_draw():
win.clear()
batch.draw()
pyglet.clock.schedule_interval(on_step, SPEED)
pyglet.app.run()
我尝试了什么:
然而,这些都没有奏效。有什么问题?这个错误是否可以在您的机器上重现?这个问题似乎是随机发生的。
编辑:我认为这不是随机的。我尝试了一个不同的测试,它不会删除每个新帧的批处理,而是为现有的一个添加另一个八边形。这是发生的事情:
似乎它们都是连接的。特别是他们的中心。毕竟,我想这可能是代码中的一个错误。
这是我的第二次测试:
import pyglet
from circle import octagon
from random import randrange
WIN = 900, 900, 'TEST', 0, 'tool', 0, 1, 0 # vsync off to unlimit fps
RADIUS = 60
SPEED = 1.0
WHITE = (255, 255, 255) # for center
RED = (255, 0, 0) # for points
win = pyglet.window.Window(*WIN)
batch = pyglet.graphics.Batch()
def on_step(dt):
global counter
x = randrange(RADIUS, WIN[0] - RADIUS)
y = randrange(RADIUS, WIN[1] - RADIUS)
octagon(x, y, RADIUS, WHITE+RED*8, batch, None)
@win.event
def on_draw():
win.clear()
batch.draw()
pyglet.clock.schedule_interval(on_step, SPEED)
pyglet.app.run()
答案 0 :(得分:2)
您的索引列表不正确:
i = list(chain.from_iterable( (0, x+1, x+2) for x in range(8) ) )
[0,1,2,0,2,3,0,3,4,0,4,5,5,5,6,0,6,7,7,7,8,8,8, 9 ,0,1,8]
应为range(7)
。