xxxxxxxxxx
16
let nSchritte = 12;
function setup() {
createCanvas(400, 400);
background(255);
const schrittweite = width / nSchritte;
for (let y = schrittweite / 2; y < width; y = y + schrittweite) {
for (let x = schrittweite / 2; x < width; x = x + schrittweite) {
circle(x, y, schrittweite);
}
}
}
// https://www.maschinennah.de/p5js-halle