p5((s) => {
let cells = 20
let cellWidth = width / 20
let lines = 10
s.setup = function () {
s.createCanvas(width, height);
s.noLoop();
s.stroke(0);
s.noFill()
};
s.draw = function () {
for (let l = 0; l <= lines; l++) {
s.beginShape();
s.curveVertex(0, height / 2);
for (let i = 0; i <= cells; i++) {
s.curveVertex(cellWidth * i, s.random(0, height));
}
s.curveVertex(width, height / 2);
s.endShape();
}
};
})