Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Emulate processing with python?

I'm looking for a basic programmatic animation framework similar to processing except in python. That is, something that allows pixel manipulation, has basic drawing/color primitives, and is geared towards animation. Is pygame pretty much the best bet or are there other options?


2 Answers

"Similar to processing except in python" screams "NodeBox" to me. NodeBox is OSX-only, and i don't know if it allows pixel-level manipulation, but much of its command set was derived directly from processing. You can find it at the NodeBox site.

Well, this is as close as it gets: http://code.google.com/p/pyprocessing/

like image 21
fred_f Avatar answered Aug 03 '26 12:08

fred_f