pyglet! wow!
I've never heard of pyglet before hearing someone mentioning it here on PyWeek messages. It seems popular and when I checked through the API reference it seems to have *a lot* of what I need.I've used PyGame before, but miss OpenGL.
So if I get into 3D in Python, pyglet will be on my mind. Did 3D in C/C++ using SDL's GL support some years ago, but never got around to liking C++ very much.
(log in to comment)
Comments
import squirtle
squirtle.setup_gl()
my_svg = squirtle.SVG('filename.svg', anchor_x='center', anchor_y='center')
my_svg.draw(100, 200, angle=15, scale=3)
ninmonkey on 2010/03/23 22:12:
You may be interested in: there's a thread around here talks about using:pyglet + squirtle + inkscape
To render SVG inkscape created maps in opengl.