1
vote
2answers
294 views
why might my pyglet vertex lists and batches be very slow on Windows?
I'm writing opengl code in python using the library pyglet. When I draw to the screen using pyglet.graphics.vertex_list or pyglet.graphics.batch objects, they are very slow (~0.1 fps) compared to p …
0
votes
why might my pyglet vertex lists and batches be very slow on Windows?
Don't forget to invoke your pyglet scripts with 'python -O myscript.py', the '-O' flag can make a huge performance difference.
…
0
votes
How to create a fractal cube?
A nice introduction to Perlin noise, written by Ken Perlin himself, is here. He talks about generating a one or two dimensional noise …
0
votes
Rotating OpenGL scene in 2 axes
Hey there,
When you say rotate vertically and horizontally, do you mean like an anti-aircraft gun - rotate around the vertical Z axis, to face in a particular compass heading (yaw) and then …
