Public
Edited
Nov 4, 2022
1 star
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
svgPolygons = polygons.map((p, i) => {
function interpolate(angle, start, range) {
let a = angle / 180 * Math.PI
let t = (Math.cos(a) * x + Math.sin(a) * y) / 1000
return start + t * range
}
let [x, y] = p[0]
let hue = interpolate(hueAngle, hueStart, hueRange)
let sat = interpolate(satAngle, satStart, satRange)
let val = interpolate(valAngle, valStart, valRange)
let color = `hsl(${hue|0}, ${sat|0}%, ${val|0}%)`
return svg`<polygon fill="${color}" stroke="${color}" stroke-width="0.5" points="${p.join(' ')}">`;
})
Insert cell
Insert cell
Insert cell
delaunay = d3Delaunay.Delaunay.from(points)
Insert cell
voronoi = delaunay.voronoi([0, 0, 1000, 1000])
Insert cell
polygons = Array.from(voronoi.cellPolygons())
Insert cell
d3Delaunay = require('d3-delaunay@5')
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