Script

Result

Processing Playground

This is a playground for experimenting with Processing.js, written by John Resig, inspired by the original, Java-based Processing initiated by Ben Fry and Casey Reas

All embedded demos taken from the Processing.js basic demos page (see individual demos from that page for notes), and are intended to run in Firefox 3, although most will also run in WebKit nightlies, Opera 9.5, and many work with Safari 3. Don't expect anything to work in IE. There is lots more documentation on the Processing site.

Processing Playground created by Dethe Elza so my kids can experiment with Processing, while having ready examples to work from. Please take it in the spirit it is intended.

// All Examples Written by Casey Reas and Ben Fry // unless otherwise stated. int num = 20; float c; void setup() { size(200,200); fill(255); frameRate(30); } void draw() { background(0); c+=0.1; for(int i=1; i