Published
Edited
Jan 31, 2021
15 stars
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
function next_halfedge(e) { return (e % 3 == 2) ? e-2 : e+1; }
Insert cell
function prev_halfedge(e) { return (e % 3 == 0) ? e+2 : e-1; }
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
function starts(delaunator) {
let index = []; // point id to half-edge id
for (let e = 0; e < delaunator.triangles.length; e++) {
index[delaunator.triangles[e]] = e;
}
return index;
}
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
function t_vertex(points, delaunator, t) {
let a = points[delaunator.triangles[3*t]],
b = points[delaunator.triangles[3*t + 1]],
c = points[delaunator.triangles[3*t + 2]];
return circumcenter(a, b, c);
}
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
Insert cell
Insert cell
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