svg loading library I plan to use..

I plan to enter my first PyWeek this August, and will probably will use an SVG loading library I recently cobbled together after dissecting Squirtle.

svgload

My version is inferior to Squirtle in every respect. It doesn't handle arcs or beziers or gradient fills or line paths. However, it does produce indexed vertex arrays of GL_TRIANGLES for use in pyglet Batches, rather than display lists. The GLU polygon tessellation code is directly lifted from Squirtle, under the terms of the BSD.

Is there anywhere else I should notify people of its existence in order for it to qualify as useable in next month's PyWeek?

Thanks all. Tartley

(log in to comment)

Comments

Mentioning it here is fine as far as notifying people of its existence is concerned. There's an additional requirement, though, that any library you plan to use be documented at least to the point where someone else can figure out how to use it without looking at your code (otherwise, you're leaving other users of the library at a disadvantage compared to yourself, which defeats the point of the library rule in the first place). The README.TXT file in Squirtle (since you obviously have that to hand) is probably a good example of what is required.
Kudos Tartley!

What adam said :)

I'd like to also note that there's code I wrote to render SVG lines, including curves, in the pyglet examples directory. It generates pyglet batches.
Sorry, I meant in the experimental directory.
@Adam: Thanks for that. I've documented it now, at http://code.google.com/p/svgload/ @Richard: Ahar! Thanks heaps for that, I'll check it out. Looking forward to it!