UNPKG
d3-jsnext
Version:
latest (3.5.5)
3.5.5
d3, but futuristic
github.com/rollup/d3-jsnext
rollup/d3-jsnext
d3-jsnext
/
src
/
geom
/
delaunay.js
11 lines
(8 loc)
•
278 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import { d3$geom
$voronoi
}
from
'./voronoi'
; import { d3
$geom
}
from
'./geom'
;
var
d3$geom
$delaunay
;
// @deprecated; use d3.geom.voronoi triangles instead.
d3$geom
$delaunay
=
function
(
vertices
)
{
return
d3$geom
$voronoi
().
triangles
(vertices); }; export { d3$geom
$delaunay
};