(alpha, points)
| 1859 | var circumradius = __webpack_require__(6037) |
| 1860 | |
| 1861 | function alphaComplex(alpha, points) { |
| 1862 | return delaunay(points).filter(function(cell) { |
| 1863 | var simplex = new Array(cell.length) |
| 1864 | for(var i=0; i<cell.length; ++i) { |
| 1865 | simplex[i] = points[cell[i]] |
| 1866 | } |
| 1867 | return circumradius(simplex) * alpha < 1 |
| 1868 | }) |
| 1869 | } |
| 1870 | |
| 1871 | /***/ }), |
| 1872 |
nothing calls this directly
no test coverage detected
searching dependent graphs…