xxxxxxxxxx
25
obs = [];
function setup() {
createCanvas(windowWidth, windowHeight);
for (let i = 0; i < width; i+=1) {
obs.push({
x: i,
v: random(4, 10),
l: 0,
});
}
}
function draw() {
background(220, 20, 120, 20);
stroke(250);
let y = 0;//height / 2;
for (let i = 0; i < obs.length; i++) {
mo = obs[i];
line(mo.x, y - mo.l, mo.x, y + mo.l);
mo.l = (mo.l + mo.v) % height;
}
}