/** * Milliseconds. * * A millisecond is 1/1000 of a second. * Processing keeps track of the number of milliseconds a program has run. * By modifying this number with the modulo(%) operator, * different patterns in time are created. */ float scale; void setup() { size(200, 200); noStroke(); scale = width/10; } void draw() { for(int i=0; i