xxxxxxxxxx
23
let squaresPerRow = 100;
let spacing;
function setup() {
createCanvas(windowWidth, windowHeight);
spacing = width / squaresPerRow;
noLoop();
}
function draw() {
noStroke();
background(0);
for (let y = 0; y < height; y += spacing) {
for (let x = 0; x < width; x += spacing) {
let d = dist(x, y, width / 2, height / 2);
let c = map(d, 0, width / 2, 255, 0);
fill(c);
rect(x, y, spacing + 1);
}
}
}