int x = 0; int y = 0; int s = 0; void setup() { background(122,122,122); size(700,700); }
void draw() { x++; y++; s++; background(122,122,122); rect(width/4-s,height/4-s,s,s); rect(width/4+s,height/4+s,s,s); rect(width/4+s,height/4-s,s,s); rect(width/4-s,height/4+s,s,s); }