function setup() { createCanvas(360, 360); background(100); noStroke(); for(i=0; i < height; i+=30) { fill(0); rect(0, i, width, 15); fill(255); rect(i, 0, 15, height); } }