[gallery]
A progress indicator in Processing.
int width = 128; int height = 128; float amount = 1.0; float spokes = 0; boolean storeResults = true; void setup () { size(width, height); } void draw () { fill(0, 0, 0); rect(0, 0, width, height); stroke(255, 255, 255, 128); fill(255, 255, 255, 128); …