xxxxxxxxxx
48
let box_w;
function setup() {
createCanvas(600, 600);
pixelDensity(1);
background(20);
angleMode(RADIANS);
box_w = width * 0.1;
let half_box_w = box_w / 2;
let box_w_border = box_w - box_w * 0.1;
stroke(220);
for (let y = box_w; y < height; y += box_w) {
line(0, y, width, y);
}
for (let x = box_w; x < width; x += box_w) {
line(x, 0, x, height);
}
rectMode(CENTER);
noStroke();
for (let y = half_box_w; y < height; y += box_w) {
for (let x = half_box_w; x < width; x += box_w) {
fill(random(220));
if (random() > 0.5) drawCircles(x, y, box_w_border);
else {
drawCircles(x, y, box_w_border, (circ = false));
}
}
}
}
function draw() {
// background(220);
}
function drawCircles(x, y, w, circ = true) {
let d = random(1, w * 0.1);
noFill();
while (d < w) {
stroke(random(220));
if (circ) circle(x, y, d);
else square(x, y, d);
d += random(w * 0.1, w * 0.01);
}
}