@thi.ng/geom-voronoi 2.3.21 → 2.3.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -1
- package/README.md +1 -0
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -93,6 +93,7 @@ A selection:
|
|
|
93
93
|
| Screenshot | Description | Live demo | Source |
|
|
94
94
|
|:------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------|:-------------------------------------------------------|:------------------------------------------------------------------------------------|
|
|
95
95
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/geom-voronoi-mst.jpg" width="240"/> | Poisson-disk shape-aware sampling, Voronoi & Minimum Spanning Tree visualization | [Demo](https://demo.thi.ng/umbrella/geom-voronoi-mst/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/geom-voronoi-mst) |
|
|
96
|
+
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/quasi-lattice.png" width="240"/> | Quasi-random lattice generator | [Demo](https://demo.thi.ng/umbrella/quasi-lattice/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/quasi-lattice) |
|
|
96
97
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/rotating-voronoi.jpg" width="240"/> | Animated Voronoi diagram, cubic splines & SVG download | [Demo](https://demo.thi.ng/umbrella/rotating-voronoi/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rotating-voronoi) |
|
|
97
98
|
|
|
98
99
|
## API
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/geom-voronoi",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.23",
|
|
4
4
|
"description": "Fast, incremental 2D Delaunay & Voronoi mesh implementation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,23 +34,23 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/api": "^8.9.
|
|
38
|
-
"@thi.ng/bitfield": "^2.
|
|
39
|
-
"@thi.ng/checks": "^3.4.
|
|
40
|
-
"@thi.ng/geom-clip-line": "^2.3.
|
|
41
|
-
"@thi.ng/geom-clip-poly": "^2.1.
|
|
42
|
-
"@thi.ng/geom-isec": "^2.1.
|
|
43
|
-
"@thi.ng/geom-poly-utils": "^2.3.
|
|
44
|
-
"@thi.ng/math": "^5.6.
|
|
45
|
-
"@thi.ng/quad-edge": "^3.1.
|
|
46
|
-
"@thi.ng/vectors": "^7.7.
|
|
37
|
+
"@thi.ng/api": "^8.9.6",
|
|
38
|
+
"@thi.ng/bitfield": "^2.3.1",
|
|
39
|
+
"@thi.ng/checks": "^3.4.6",
|
|
40
|
+
"@thi.ng/geom-clip-line": "^2.3.38",
|
|
41
|
+
"@thi.ng/geom-clip-poly": "^2.1.80",
|
|
42
|
+
"@thi.ng/geom-isec": "^2.1.80",
|
|
43
|
+
"@thi.ng/geom-poly-utils": "^2.3.64",
|
|
44
|
+
"@thi.ng/math": "^5.6.3",
|
|
45
|
+
"@thi.ng/quad-edge": "^3.1.36",
|
|
46
|
+
"@thi.ng/vectors": "^7.7.20"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@microsoft/api-extractor": "^7.
|
|
50
|
-
"@thi.ng/testament": "^0.3.
|
|
51
|
-
"rimraf": "^5.0.
|
|
49
|
+
"@microsoft/api-extractor": "^7.38.0",
|
|
50
|
+
"@thi.ng/testament": "^0.3.24",
|
|
51
|
+
"rimraf": "^5.0.5",
|
|
52
52
|
"tools": "^0.0.1",
|
|
53
|
-
"typedoc": "^0.25.
|
|
53
|
+
"typedoc": "^0.25.2",
|
|
54
54
|
"typescript": "^5.2.2"
|
|
55
55
|
},
|
|
56
56
|
"keywords": [
|
|
@@ -91,5 +91,5 @@
|
|
|
91
91
|
],
|
|
92
92
|
"year": 2016
|
|
93
93
|
},
|
|
94
|
-
"gitHead": "
|
|
94
|
+
"gitHead": "8d46d9326a9f9b81d65e7e274446f5964f9942ac\n"
|
|
95
95
|
}
|