Created by Christopher Manning
Nodes are linked to nodes in neighboring cells. The cell's color is a function of its area.
The white lines are the Delaunay triangulation and the purple cells are the Voronoi diagram.
| // Builders | |
| class SimpleBuilder { | |
| constructor(private current = {}) { | |
| } | |
| prop(key: string, value: any) { | |
| return new SimpleBuilder({ ...this.current, ...{ [key]: value } }); | |
| } |
Created by Christopher Manning
Nodes are linked to nodes in neighboring cells. The cell's color is a function of its area.
The white lines are the Delaunay triangulation and the purple cells are the Voronoi diagram.