xxxxxxxxxx
38
let x = 0;
let y = 0;
let spacing = 20;
function setup() {
createCanvas(windowWidth, windowHeight);
background(0);
ellipseMode(CORNER);
}
function draw() {
noFill();
stroke(255);
if (random(1) < 0.5) {
rect(x, y, spacing, spacing);
// line(x, y, x + spacing, y + spacing);
} else {
// push();
noFill();
ellipse(x, y, spacing);
// pop();
line(x, y, x + spacing, y + spacing);
line(x, y + spacing, x + spacing, y);
}
x += spacing;
if (x > width) {
x = 0;
y += spacing;
}
if (y > height) {
noLoop();
}
}