bnb({
w: 540, h: 540,
numFrames: 120,
fps: 20,
record: true,
preload: (s, g) => {
g.pg = s.createGraphics(540, 540)
g.pg.clear()
g.pg.stroke(0, 3)
for(let i = 0; i < 10e5; i ++) {
g.pg.point(s.random(540), s.random(540))
}
},
draw: (s, t, g) => {
const cosT = s.cos(t * TAU) * .3
const sinT = s.sin(t * TAU) * .3
s.background(235)
s.image(g.pg, 0, 0)
s.drawingContext.globalAlpha = 0.8
s.translate(s.width / 2, s.height / 2)
s.stroke(22)
s.fill(22)
array(N).forEach(i => {
const angle = s.asin(map(i + 1, -1, N + 1, -1, 1))
const X = s.cos(angle) * (s.width / 2 - 50)
const Y = s.sin(angle) * (s.height / 2 - 30)
const points = array(X * 2 + 1 | 0).map(j => {
const v = PVector(map(j, 0, X * 2, -X, X), Y)
v.add(PVector.fromAngle(simplex.noise4D(cosT * 1 + v.x / scaleX, sinT * 1 + v.y / scaleY, cosT, sinT) * TAU - PI).setMag(mag))
return v
})
const tool = PVector.fromAngle(t * TAU * 2).setMag(3)
s.beginShape()
points.forEach(pt => s.vertex(pt.x, pt.y))
points.reverse().forEach(pt => s.vertex(pt.x + tool.x, pt.y + tool.y))
s.endShape(s.CLOSE)
})
}
})