@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.
Files changed (3) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/index.d.ts +2 -2
  3. package/package.json +14 -14
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2025-04-01T21:42:04Z
3
+ - **Last updated**: 2025-04-16T11:11:14Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
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.114",
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.25",
43
- "@thi.ng/bitfield": "^2.4.0",
44
- "@thi.ng/checks": "^3.7.5",
45
- "@thi.ng/geom-clip-line": "^2.3.129",
46
- "@thi.ng/geom-clip-poly": "^2.1.171",
47
- "@thi.ng/geom-isec": "^4.0.39",
48
- "@thi.ng/geom-poly-utils": "^3.0.39",
49
- "@thi.ng/math": "^5.11.25",
50
- "@thi.ng/quad-edge": "^3.1.89",
51
- "@thi.ng/vectors": "^7.13.0"
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.1",
56
- "typescript": "^5.8.2"
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": "87aa2d0e64a357476c10fd57aabdfded13c79f7d\n"
97
+ "gitHead": "c464b6948f92cba90c2ea75b59203dad894fb450\n"
98
98
  }