@thi.ng/geom-clip-poly 2.1.12 → 2.1.13

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 +1 -1
  3. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2022-05-07T11:33:35Z
3
+ - **Last updated**: 2022-06-09T16:14:01Z
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
@@ -11,5 +11,5 @@ import type { ReadonlyVec } from "@thi.ng/vectors";
11
11
  * @param bc - pre-computed boundary centroid
12
12
  * @param eps - edge classification tolerance
13
13
  */
14
- export declare const sutherlandHodgeman: (pts: ReadonlyVec[], bounds: ReadonlyVec[], bc?: ReadonlyVec | undefined, eps?: number) => ReadonlyVec[];
14
+ export declare const sutherlandHodgeman: (pts: ReadonlyVec[], bounds: ReadonlyVec[], bc?: ReadonlyVec, eps?: number) => ReadonlyVec[];
15
15
  //# sourceMappingURL=index.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/geom-clip-poly",
3
- "version": "2.1.12",
3
+ "version": "2.1.13",
4
4
  "description": "2D polygon clipping / offsetting (Sutherland-Hodgeman, Grainer-Hormann)",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,18 +34,18 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/geom-isec": "^2.1.12",
38
- "@thi.ng/geom-poly-utils": "^2.2.4",
39
- "@thi.ng/math": "^5.3.2",
40
- "@thi.ng/vectors": "^7.5.4"
37
+ "@thi.ng/geom-isec": "^2.1.13",
38
+ "@thi.ng/geom-poly-utils": "^2.2.5",
39
+ "@thi.ng/math": "^5.3.3",
40
+ "@thi.ng/vectors": "^7.5.5"
41
41
  },
42
42
  "devDependencies": {
43
- "@microsoft/api-extractor": "^7.23.1",
44
- "@thi.ng/testament": "^0.2.7",
43
+ "@microsoft/api-extractor": "^7.25.0",
44
+ "@thi.ng/testament": "^0.2.8",
45
45
  "rimraf": "^3.0.2",
46
46
  "tools": "^0.0.1",
47
- "typedoc": "^0.22.15",
48
- "typescript": "^4.6.4"
47
+ "typedoc": "^0.22.17",
48
+ "typescript": "^4.7.3"
49
49
  },
50
50
  "keywords": [
51
51
  "2d",
@@ -83,5 +83,5 @@
83
83
  ],
84
84
  "year": 2013
85
85
  },
86
- "gitHead": "e23901b8582af71d8a29e0ce4929f15ac509f9e5\n"
86
+ "gitHead": "9e516d30a1a537e027a6b3d78bf9121bc5831d31\n"
87
87
  }