xxxxxxxxxx
46
let w
function setup() {
createCanvas(500, 500);
w = 50
}
function draw() {
background(220);
fill(255)
for(let x = 0; x < width; x+= w*2){
for(let y = 0; y < height; y+= w*2){
noStroke();
rect(x, y, w, w);
}
}
for(let x = w; x < width; x+= w*2){
for(let y = w; y < height; y+= w*2){
noStroke();
rect(x, y, w, w);
}
}
fill(0)
for(let x = w; x < width; x+= w*2){
for(let y = 0; y < height; y+= w*2){
noStroke();
rect(x, y, w, w);
}
}
for(let x = 0; x < width; x+= w*2){
for(let y = w; y < height; y+= w*2){
noStroke();
rect(x, y, w, w);
}
}
}