xxxxxxxxxx
18
let t = 0
function setup() {
createCanvas(400, 400);
noFill()
}
function draw() {
background(220);
beginShape()
for (let w = 0; w < width; w+=5 ) {
vertex(w, map(noise(t), 0, 1, 100, 300))
t+=0.008
}
endShape()
// noLoop()
}