()
| 25285 | return (e.closePath(), n && n.value()); |
| 25286 | } |
| 25287 | *cellPolygons() { |
| 25288 | const { |
| 25289 | delaunay: { points: t }, |
| 25290 | } = this; |
| 25291 | for (let e = 0, n = t.length / 2; e < n; ++e) { |
| 25292 | const t = this.cellPolygon(e); |
| 25293 | t && ((t.index = e), yield t); |
| 25294 | } |
| 25295 | } |
| 25296 | cellPolygon(t) { |
| 25297 | const e = new ZF(); |
| 25298 | return (this.renderCell(t, e), e.value()); |
nothing calls this directly
no test coverage detected