Skip to content

Commit

Permalink
d3-delaunay 6.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mbostock committed Apr 1, 2023
1 parent a703a6d commit 9160c16
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 71 deletions.
68 changes: 34 additions & 34 deletions API.md
Original file line number Diff line number Diff line change
Expand Up @@ -357,43 +357,43 @@ Compute contour polygons using marching squares.
* [*density*.bandwidth](https://github.com/d3/d3-contour/blob/v4.0.2/README.md#density_bandwidth) - set the bandwidth of the density estimator.
* [*density*.contours](https://github.com/d3/d3-contour/blob/v4.0.2/README.md#density_contours) - compute density contours.

## [Voronoi Diagrams (d3-delaunay)](https://github.com/d3/d3-delaunay/tree/v6.0.3)
## [Voronoi Diagrams (d3-delaunay)](https://github.com/d3/d3-delaunay/tree/v6.0.4)

Compute the Voronoi diagram of a set of two-dimensional points.

* [new Delaunay](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#new_Delaunay) - create a delaunay triangulation for an array of point coordinates.
* [Delaunay.from](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#delaunay_from) - create a delaunay triangulation for an iterable of points.
* [*delaunay*.points](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#delaunay_points) - the coordinates of the points.
* [*delaunay*.halfedges](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#delaunay_halfedges) - the delaunay halfedges.
* [*delaunay*.hull](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#delaunay_hull) - the convex hull as point indices.
* [*delaunay*.triangles](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#delaunay_triangles) - the delaunay triangles.
* [*delaunay*.inedges](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#delaunay_inedges) - the delaunay inedges
* [*delaunay*.find](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#delaunay_find) - find the closest point in the delaunay triangulation.
* [*delaunay*.neighbors](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#delaunay_neighbors) - the neighbors of a point in the delaunay triangulation.
* [*delaunay*.render](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#delaunay_render) - render the edges of the delaunay triangulation.
* [*delaunay*.renderHull](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#delaunay_renderHull) - render the convex hull.
* [*delaunay*.renderTriangle](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#delaunay_renderTriangle) - render a triangle.
* [*delaunay*.renderPoints](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#delaunay_renderPoints) - render the points.
* [*delaunay*.hullPolygon](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#delaunay_hullPolygon) - the closed convex hull as point coordinates.
* [*delaunay*.trianglePolygons](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#delaunay_trianglePolygons) - iterate over all the triangles as polygons.
* [*delaunay*.trianglePolygon](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#delaunay_trianglePolygon) - return a triangle as a polygon.
* [*delaunay*.update](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#delaunay_update) - update a delaunay triangulation in place.
* [*delaunay*.voronoi](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#delaunay_voronoi) - compute the voronoi diagram associated with a delaunay triangulation.
* [*voronoi*.delaunay](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#voronoi_delaunay) - the voronoi diagram’s source delaunay triangulation.
* [*voronoi*.circumcenters](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#voronoi_circumcenters) - the triangles’ circumcenters.
* [*voronoi*.vectors](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#voronoi_vectors) - directions for the outer (infinite) cells of the voronoi diagram.
* [*voronoi*.xmin](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#voronoi_xmin) - set the *xmin* bound of the extent.
* [*voronoi*.ymin](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#voronoi_ymin) - set the *ymin* bound of the extent.
* [*voronoi*.xmax](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#voronoi_xmax) - set the *xmax* bound of the extent.
* [*voronoi*.ymax](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#voronoi_ymax) - set the *ymax* bound of the extent.
* [*voronoi*.contains](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#voronoi_contains) - test whether a point is inside a voronoi cell.
* [*voronoi*.neighbors](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#voronoi_neighbors) - the neighbors of a point in the voronoi diagram.
* [*voronoi*.render](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#voronoi_render) - render the mesh of voronoi cells.
* [*voronoi*.renderBounds](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#voronoi_renderBounds) - render the extent.
* [*voronoi*.renderCell](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#voronoi_renderCell) - render a voronoi cell.
* [*voronoi*.cellPolygons](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#voronoi_cellPolygons) - iterate over all the cells as polygons.
* [*voronoi*.cellPolygon](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#voronoi_cellPolygon) - return a cell as a polygon.
* [*voronoi*.update](https://github.com/d3/d3-delaunay/blob/v6.0.3/README.md#voronoi_update) - update a voronoi diagram in place.
* [new Delaunay](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#new_Delaunay) - create a delaunay triangulation for an array of point coordinates.
* [Delaunay.from](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#delaunay_from) - create a delaunay triangulation for an iterable of points.
* [*delaunay*.points](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#delaunay_points) - the coordinates of the points.
* [*delaunay*.halfedges](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#delaunay_halfedges) - the delaunay halfedges.
* [*delaunay*.hull](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#delaunay_hull) - the convex hull as point indices.
* [*delaunay*.triangles](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#delaunay_triangles) - the delaunay triangles.
* [*delaunay*.inedges](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#delaunay_inedges) - the delaunay inedges
* [*delaunay*.find](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#delaunay_find) - find the closest point in the delaunay triangulation.
* [*delaunay*.neighbors](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#delaunay_neighbors) - the neighbors of a point in the delaunay triangulation.
* [*delaunay*.render](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#delaunay_render) - render the edges of the delaunay triangulation.
* [*delaunay*.renderHull](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#delaunay_renderHull) - render the convex hull.
* [*delaunay*.renderTriangle](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#delaunay_renderTriangle) - render a triangle.
* [*delaunay*.renderPoints](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#delaunay_renderPoints) - render the points.
* [*delaunay*.hullPolygon](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#delaunay_hullPolygon) - the closed convex hull as point coordinates.
* [*delaunay*.trianglePolygons](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#delaunay_trianglePolygons) - iterate over all the triangles as polygons.
* [*delaunay*.trianglePolygon](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#delaunay_trianglePolygon) - return a triangle as a polygon.
* [*delaunay*.update](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#delaunay_update) - update a delaunay triangulation in place.
* [*delaunay*.voronoi](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#delaunay_voronoi) - compute the voronoi diagram associated with a delaunay triangulation.
* [*voronoi*.delaunay](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#voronoi_delaunay) - the voronoi diagram’s source delaunay triangulation.
* [*voronoi*.circumcenters](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#voronoi_circumcenters) - the triangles’ circumcenters.
* [*voronoi*.vectors](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#voronoi_vectors) - directions for the outer (infinite) cells of the voronoi diagram.
* [*voronoi*.xmin](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#voronoi_xmin) - set the *xmin* bound of the extent.
* [*voronoi*.ymin](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#voronoi_ymin) - set the *ymin* bound of the extent.
* [*voronoi*.xmax](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#voronoi_xmax) - set the *xmax* bound of the extent.
* [*voronoi*.ymax](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#voronoi_ymax) - set the *ymax* bound of the extent.
* [*voronoi*.contains](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#voronoi_contains) - test whether a point is inside a voronoi cell.
* [*voronoi*.neighbors](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#voronoi_neighbors) - the neighbors of a point in the voronoi diagram.
* [*voronoi*.render](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#voronoi_render) - render the mesh of voronoi cells.
* [*voronoi*.renderBounds](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#voronoi_renderBounds) - render the extent.
* [*voronoi*.renderCell](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#voronoi_renderCell) - render a voronoi cell.
* [*voronoi*.cellPolygons](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#voronoi_cellPolygons) - iterate over all the cells as polygons.
* [*voronoi*.cellPolygon](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#voronoi_cellPolygon) - return a cell as a polygon.
* [*voronoi*.update](https://github.com/d3/d3-delaunay/blob/v6.0.4/README.md#voronoi_update) - update a voronoi diagram in place.

## [Dispatches (d3-dispatch)](https://github.com/d3/d3-dispatch/tree/v3.0.1)

Expand Down
74 changes: 37 additions & 37 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@


"@babel/code-frame@^7.10.4":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a"
integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==
version "7.21.4"
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.21.4.tgz#d0fa9e4413aca81f2b23b9442797bda1826edb39"
integrity sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==
dependencies:
"@babel/highlight" "^7.18.6"

Expand All @@ -31,29 +31,29 @@
eslint-visitor-keys "^3.3.0"

"@eslint-community/regexpp@^4.4.0":
version "4.4.1"
resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.4.1.tgz#087cb8d9d757bb22e9c9946c9c0c2bf8806830f1"
integrity sha512-BISJ6ZE4xQsuL/FmsyRaiffpq977bMlsKfGHTQrOGFErfByxIe6iZTxPf/00Zon9b9a7iUykfQwejN3s2ZW/Bw==
version "4.5.0"
resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.5.0.tgz#f6f729b02feee2c749f57e334b7a1b5f40a81724"
integrity sha512-vITaYzIcNmjn5tF5uxcZ/ft7/RXGrMUIS9HalWckEOF6ESiwXKoMzAQf2UW0aVd6rnOeExTJVd5hmWXucBKGXQ==

"@eslint/eslintrc@^2.0.1":
version "2.0.1"
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.0.1.tgz#7888fe7ec8f21bc26d646dbd2c11cd776e21192d"
integrity sha512-eFRmABvW2E5Ho6f5fHLqgena46rOj7r7OKHYfLElqcBfGFHHpjBhivyi5+jOEQuSpdc/1phIZJlbC2te+tZNIw==
"@eslint/eslintrc@^2.0.2":
version "2.0.2"
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.0.2.tgz#01575e38707add677cf73ca1589abba8da899a02"
integrity sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ==
dependencies:
ajv "^6.12.4"
debug "^4.3.2"
espree "^9.5.0"
espree "^9.5.1"
globals "^13.19.0"
ignore "^5.2.0"
import-fresh "^3.2.1"
js-yaml "^4.1.0"
minimatch "^3.1.2"
strip-json-comments "^3.1.1"

"@eslint/js@8.36.0":
version "8.36.0"
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.36.0.tgz#9837f768c03a1e4a30bd304a64fb8844f0e72efe"
integrity sha512-lxJ9R5ygVm8ZWgYdUweoq5ownDlJ4upvoWmO4eLxBYHdMo+vZ/Rx0EN6MbKWDJOSUGrqJy2Gt+Dyv/VKml0fjg==
"@eslint/js@8.37.0":
version "8.37.0"
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.37.0.tgz#cf1b5fa24217fe007f6487a26d765274925efa7d"
integrity sha512-x5vzdtOOGgFVDCUs81QRB2+liax8rFg3+7hqM+QhBG0/G3F1ZsoYl97UrqgHgQ9KKT7G6c4V+aTUCgu/n22v1A==

"@humanwhocodes/config-array@^0.11.8":
version "0.11.8"
Expand Down Expand Up @@ -169,9 +169,9 @@
integrity sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==

"@types/node@*":
version "18.15.8"
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.15.8.tgz#222383320e71f9a1397d25c416e9c62d347758e0"
integrity sha512-kzGNJZ57XEH7RdckxZ7wfRjB9hgZABF+NLgR1B2zogUvV0gmK0/60VYA4yb4oKZckPiiJlmmfpdqTfCN0VRX+Q==
version "18.15.11"
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.15.11.tgz#b3b790f09cb1696cffcec605de025b088fa4225f"
integrity sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==

"@types/resolve@1.20.2":
version "1.20.2"
Expand Down Expand Up @@ -424,9 +424,9 @@ d3-contour@4:
d3-array "^3.2.0"

d3-delaunay@6:
version "6.0.3"
resolved "https://registry.yarnpkg.com/d3-delaunay/-/d3-delaunay-6.0.3.tgz#d0824ba2012a5f6cd17d035653d0515d1c098257"
integrity sha512-1gPbiMuikAgU/rFcT6WMu17zx0aelw9Hh80go7/TwZQ+/uq8DqqmiNYy+EqPEvTSp/BkJFIpQxjac4Gk/w0zOg==
version "6.0.4"
resolved "https://registry.yarnpkg.com/d3-delaunay/-/d3-delaunay-6.0.4.tgz#98169038733a0a5babbeda55054f795bb9e4a58b"
integrity sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==
dependencies:
delaunator "5"

Expand Down Expand Up @@ -658,20 +658,20 @@ eslint-scope@^7.1.1:
esrecurse "^4.3.0"
estraverse "^5.2.0"

eslint-visitor-keys@^3.3.0:
version "3.3.0"
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826"
integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.0:
version "3.4.0"
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz#c7f0f956124ce677047ddbc192a68f999454dedc"
integrity sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==

eslint@8:
version "8.36.0"
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.36.0.tgz#1bd72202200a5492f91803b113fb8a83b11285cf"
integrity sha512-Y956lmS7vDqomxlaaQAHVmeb4tNMp2FWIvU/RnU5BD3IKMD/MJPr76xdyr68P8tV1iNMvN2mRK0yy3c+UjL+bw==
version "8.37.0"
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.37.0.tgz#1f660ef2ce49a0bfdec0b0d698e0b8b627287412"
integrity sha512-NU3Ps9nI05GUoVMxcZx1J8CNR6xOvUT4jAUMH5+z8lpp3aEdPVCImKw6PWG4PY+Vfkpr+jvMpxs/qoE7wq0sPw==
dependencies:
"@eslint-community/eslint-utils" "^4.2.0"
"@eslint-community/regexpp" "^4.4.0"
"@eslint/eslintrc" "^2.0.1"
"@eslint/js" "8.36.0"
"@eslint/eslintrc" "^2.0.2"
"@eslint/js" "8.37.0"
"@humanwhocodes/config-array" "^0.11.8"
"@humanwhocodes/module-importer" "^1.0.1"
"@nodelib/fs.walk" "^1.2.8"
Expand All @@ -682,8 +682,8 @@ eslint@8:
doctrine "^3.0.0"
escape-string-regexp "^4.0.0"
eslint-scope "^7.1.1"
eslint-visitor-keys "^3.3.0"
espree "^9.5.0"
eslint-visitor-keys "^3.4.0"
espree "^9.5.1"
esquery "^1.4.2"
esutils "^2.0.2"
fast-deep-equal "^3.1.3"
Expand All @@ -709,14 +709,14 @@ eslint@8:
strip-json-comments "^3.1.0"
text-table "^0.2.0"

espree@^9.5.0:
version "9.5.0"
resolved "https://registry.yarnpkg.com/espree/-/espree-9.5.0.tgz#3646d4e3f58907464edba852fa047e6a27bdf113"
integrity sha512-JPbJGhKc47++oo4JkEoTe2wjy4fmMwvFpgJT9cQzmfXKp22Dr6Hf1tdCteLz1h0P3t+mGvWZ+4Uankvh8+c6zw==
espree@^9.5.1:
version "9.5.1"
resolved "https://registry.yarnpkg.com/espree/-/espree-9.5.1.tgz#4f26a4d5f18905bf4f2e0bd99002aab807e96dd4"
integrity sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==
dependencies:
acorn "^8.8.0"
acorn-jsx "^5.3.2"
eslint-visitor-keys "^3.3.0"
eslint-visitor-keys "^3.4.0"

esquery@^1.4.2:
version "1.5.0"
Expand Down

0 comments on commit 9160c16

Please sign in to comment.