I am trying to draw a filled polygon with pyglet
and I get overlapping regions where they are not wanted.
My (minimalist) code:
num_pts = 6
pts_seq = [500, 129, 505, 92, 505, 114, 516, 114, 516, 93, 520, 129]
color= [255, 255, 200, 100]
pyglet.graphics.draw(
num_pts, # points count
pyglet.gl.GL_POLYGON, #
('v2i', pts_seq), # data points
('c4B', color * num_pts), # color data
)
Results:
I also tried the answer from here and got the same results.
Pyglet is based on OpenGL. The deprecated OpenGL Primitive type
GL_POLYGON
can only process convex polygons correctly.You have to triangulate the polygon and you have to use on of the Triangle primitive types
GL_TRIANGLES
,GL_TRIANGLE_STRIP
orGL_TRIANGLE_FAN
.For instance use the primitive type
GL_TRIANGLES
and stitch together the shape through 4 triangles:Or change the order of the points and use the primitive type
GL_TRIANGLE_STRIP
: