xxxxxxxxxx
37
let w;
let x;
let y;
function setup() {
createCanvas(400, 400);
background(0);
w = 10;
x = 0;
y = 0;
}
function draw() {
frameRate(25);
stroke(255);
strokeWeight(2);
noFill();
let chance = random(1);
if (x < width - w / 2) {
if (chance > 0.5) {
line(x, y, x + w, y + w);
} else {
line(x, y + w, x + w, y);
}
x += w;
} else {
y += w;
x = 0;
}
if (y > height - w /2) {
x = 0;
y = 0;
background(0);
}
}