@thi.ng/geom-voronoi 2.3.114 → 2.3.116
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/index.d.ts +2 -2
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -43,7 +43,7 @@ export declare class DVMesh<T> {
|
|
|
43
43
|
* primary mesh (i.e. Delaunay).
|
|
44
44
|
*/
|
|
45
45
|
computeDual(): void;
|
|
46
|
-
delaunay(bounds?: ReadonlyVec[]): Vec[][];
|
|
46
|
+
delaunay(bounds?: ReadonlyVec[]): Vec<number>[][];
|
|
47
47
|
/**
|
|
48
48
|
* Advanced use only. Returns Delaunay triangles as arrays of raw
|
|
49
49
|
* [thi.ng/quad-edge
|
|
@@ -55,7 +55,7 @@ export declare class DVMesh<T> {
|
|
|
55
55
|
* unique ID, accessible via `e.id` and `e.origin.id`.
|
|
56
56
|
*/
|
|
57
57
|
delaunayQE(): Edge<Vertex<T>>[][];
|
|
58
|
-
voronoi(bounds?: ReadonlyVec[]): Vec[][];
|
|
58
|
+
voronoi(bounds?: ReadonlyVec[]): Vec<number>[][];
|
|
59
59
|
/**
|
|
60
60
|
* Advanced use only. Returns Voronoi cells as arrays of raw
|
|
61
61
|
* [thi.ng/quad-edge
|
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.116",
|
|
4
4
|
"description": "Fast, incremental 2D Delaunay & Voronoi mesh implementation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -39,21 +39,21 @@
|
|
|
39
39
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@thi.ng/api": "^8.11.
|
|
43
|
-
"@thi.ng/bitfield": "^2.4.
|
|
44
|
-
"@thi.ng/checks": "^3.7.
|
|
45
|
-
"@thi.ng/geom-clip-line": "^2.3.
|
|
46
|
-
"@thi.ng/geom-clip-poly": "^2.1.
|
|
47
|
-
"@thi.ng/geom-isec": "^4.0.
|
|
48
|
-
"@thi.ng/geom-poly-utils": "^3.0.
|
|
49
|
-
"@thi.ng/math": "^5.11.
|
|
50
|
-
"@thi.ng/quad-edge": "^3.1.
|
|
51
|
-
"@thi.ng/vectors": "^
|
|
42
|
+
"@thi.ng/api": "^8.11.26",
|
|
43
|
+
"@thi.ng/bitfield": "^2.4.1",
|
|
44
|
+
"@thi.ng/checks": "^3.7.6",
|
|
45
|
+
"@thi.ng/geom-clip-line": "^2.3.131",
|
|
46
|
+
"@thi.ng/geom-clip-poly": "^2.1.173",
|
|
47
|
+
"@thi.ng/geom-isec": "^4.0.41",
|
|
48
|
+
"@thi.ng/geom-poly-utils": "^3.0.41",
|
|
49
|
+
"@thi.ng/math": "^5.11.26",
|
|
50
|
+
"@thi.ng/quad-edge": "^3.1.90",
|
|
51
|
+
"@thi.ng/vectors": "^8.0.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"esbuild": "^0.25.2",
|
|
55
|
-
"typedoc": "^0.28.
|
|
56
|
-
"typescript": "^5.8.
|
|
55
|
+
"typedoc": "^0.28.2",
|
|
56
|
+
"typescript": "^5.8.3"
|
|
57
57
|
},
|
|
58
58
|
"keywords": [
|
|
59
59
|
"2d",
|
|
@@ -94,5 +94,5 @@
|
|
|
94
94
|
"tag": "voronoi",
|
|
95
95
|
"year": 2016
|
|
96
96
|
},
|
|
97
|
-
"gitHead": "
|
|
97
|
+
"gitHead": "c464b6948f92cba90c2ea75b59203dad894fb450\n"
|
|
98
98
|
}
|