Published
Edited
Jun 10, 2019
2 stars
Insert cell
Insert cell
{
const height = 400;
const ctx = DOM.context2d(width, height);
let rows = 8;
let cols = 14;
let radius = 4;
let pH = Math.PI / 180;

let spanX = (width/cols);
let spanY = (height/rows);

let points = [];
for (let j=0; j<rows; ++j) {
let cy = spanY * j + spanY/2;
let c = (j%2) ? cols : cols-1;
let hx = (j%2) ? spanX/2 : spanX;
for (let i=0; i<c; ++i) {
let cx = spanX * i + hx;
points.push({ cx, cy });
}
}

setInterval(() => {
ctx.clearRect(0, 0, width, height);
ctx.fillStyle="#4a4a4a";
points.forEach(p => {
let theta = Math.random() * 360;
let magnitude = d3.randomExponential(1)() * 2;
let x = p.cx + (Math.sin(theta * pH) * magnitude);
let y = height - (p.cy + (Math.cos(theta * pH) * magnitude));
ctx.beginPath();
ctx.arc(x, y, radius, 0, Math.PI * 2, true);
ctx.closePath();
ctx.fill();
});

}, 250);

yield ctx.canvas;
}
Insert cell
d3 = require("d3-random@1")
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