bnb({
w, h,
numFrames: 60,
fps: 20,
record: true,
draw: (s, t, g) => {
const xt = Math.cos(t * TAU) * .4
const yt = Math.sin(t * TAU) * .4
s.background(0)
s.noFill()
s.translate(w / 2, h / 2)
array(N).reverse().forEach(j => {
s.drawingContext.globalAlpha = map(j, 0, N, 0.5, 0)
array((j+ 1) * 250).forEach((d, i, arr) => {
const n = arr.length
const angle = TAU * i / n
let pos = PVector(30 + j * 30, 0).rotateBy(angle)
const rad = simplex.noise2D(pos.x / noiseScale + xt, pos.y / noiseScale + yt) * (5 + j * 5) * (j + 2 * N / 3) / N + 5
if(rad > 0) {
pos = PVector(30 + j * 30 + rad, 0).rotateBy(angle)
s.stroke(colorScale(rad / 50))
s.circle(pos.x, pos.y, rad * 2)
}
})
})
}
})