Published
Edited
May 22, 2020
4 stars
Insert cell
Insert cell
Insert cell
Insert cell
seed = Date.now()
Insert cell
noiseScale = 400
Insert cell
N = 7
Insert cell
colorScale = randomProc()
Insert cell
Insert cell
bnb({
w, h,
numFrames: 60,
fps: 20,
record: true,
// video: 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)
}
})
})
}
})
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more