xxxxxxxxxx
26
let column = 10;
let row = 10;
function setup() {
createCanvas(400, 400);
}
function draw() {
background(0);
let gridW = width / column;
let gridH = height / row;
for (let a = 0; a < column; a++) {
for (let b = 0; b < row; b++) {
if ((a+b) % 2 ==0) {
fill("white");
} else {
fill("black");
}
rect(a*gridW, b*gridH, gridW, gridH);
}
}
}