xxxxxxxxxx
31
let bsize, bsize2;
function setup() {
createCanvas(800, 800);
bsize = width * 0.1;
bsize2 = bsize / 2;
background(20);
stroke(220);
strokeWeight(1);
noFill();
rectMode(CENTER);
for (let y = bsize2; y < height; y += bsize) {
for (let x = bsize2; x < width; x += bsize) {
rect(x,y,bsize/2,bsize/2);
// let _x = x;
// let _y = y;
// let steps = 5;
// let step = bsize / steps;
// for (let i = 0; i < steps; i++) {
// }
}
}
}
function draw() {
// background(220);
}