xxxxxxxxxx
21
// https://www.youtube.com/watch?v=y7sgcFhk6ZM
function setup() {
createCanvas(400, 400);
noLoop();
}
function draw() {
background(51);
stroke(255);
noFill();
beginShape();
for(let x = 0; x < width; x++) {
let y = map(random(), 0, 1, 0, height);
vertex(x, y);
}
endShape();
}