(await visibility(),
bnb({
w: 540,
h: 540,
setup: (sketch, globals) => {
sketch.stroke("#1b1b1b");
},
draw: (sketch, time, globals) => {
const loopValue = sketch.sin(time * sketch.TAU);
const height = sketch.map(loopValue, 0, 1, 0, 50);
sketch.background("#1b1b1b");
sketch.translate(sketch.width / 2, sketch.height / 2);
for (let x = 0; x < 10; x++) {
sketch.circle(0, height * (x / 10), 50);
}
}
}))