xxxxxxxxxx
18
function setup() {
createCanvas(400, 400);
noLoop()
}
function draw() {
background(220);
for (let y = 0; y < height; y += 10) {
for (let x = 0; x < width; x += 5) {
const long = random(5, 100)
line(x, y, x + long, y)
x += long
}
}
}