void setup (){ function size(800,800); background(10); blendMode(ADD); println (random(100)); } void draw(){ int i = 0; while (i < 15) { i = i + 1; println(i); int j = 0; while (j < 20) { j = j + 1; int posX = i * 80; int posY = (j * 50) + int(random(10)); float dist = random(35); float col = random(255); float squareSize = random (50); print(j +“ ”); fill(col, 0, 0); rect(posX, posY, squareSize, squareSize); fill(0, col, 0); rect(posX + dist, posY + dist, squareSize, squareSize); fill(0, 0, col); rect(posX + dist * 3, posY + dist * 3, squareSize, squareSize); } } println(“we are done”); }