File tree 2 files changed +3
-0
lines changed
2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -97,6 +97,7 @@ Benchmark results against other Delaunay JS libraries
97
97
[ delaunay‑ ; fast] ( https://github.com/ironwallaby/delaunay ) | 3.8s | 132s | 4s | 138s | 12.57s | 399s | timeout | timeout
98
98
[ delaunay] ( https://github.com/darkskyapp/delaunay ) | 4.85s | 156s | 5.73s | 178s | 15.05s | 326s | timeout | timeout
99
99
[ delaunay‑ ; triangulate] ( https://github.com/mikolalysenko/delaunay-triangulate ) | 2.24s | OOM | 2.04s | OOM | OOM | OOM | 1.51s | OOM
100
+ [ cdt2d] ( https://github.com/mikolalysenko/cdt2d ) | 45s | timeout | 51s | timeout | 118s | timeout | 17s | timeout
100
101
101
102
## Papers
102
103
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import Delaunator from './index.js';
7
7
// import delaunaySlow from 'delaunay';
8
8
// import {voronoi} from 'd3-voronoi';
9
9
// import delaunayTriangulate from 'delaunay-triangulate';
10
+ // import cdt2d from 'cdt2d';
10
11
11
12
function triangulate ( points ) {
12
13
Delaunator . from ( points ) ;
@@ -16,6 +17,7 @@ function triangulate(points) {
16
17
// delaunayFast.triangulate(points);
17
18
// delaunaySlow.triangulate(points);
18
19
// delaunayTriangulate(points);
20
+ // cdt2d(points);
19
21
}
20
22
21
23
const distributions = [ uniform , gaussian , grid , degenerate ] ;
You can’t perform that action at this time.
0 commit comments