@thi.ng/geom-clip-poly 2.1.34 → 2.1.36
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 +4 -4
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
- **Last updated**: 2022-
|
|
3
|
+
- **Last updated**: 2022-11-23T22:46:54Z
|
|
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.
|
|
@@ -53,10 +53,10 @@ and/or version bumps of transitive dependencies.
|
|
|
53
53
|
|
|
54
54
|
#### ♻️ Refactoring
|
|
55
55
|
|
|
56
|
-
- update imports ([869a773](https://github.com/thi-ng/umbrella/commit/869a773))
|
|
57
|
-
- update all test stubs ([f2d6d53](https://github.com/thi-ng/umbrella/commit/f2d6d53))
|
|
58
56
|
- update all tests in _all_ pkgs ([8b582bc](https://github.com/thi-ng/umbrella/commit/8b582bc))
|
|
59
57
|
- update all to use [@thi.ng/testament](https://github.com/thi-ng/umbrella/tree/main/packages/testament)
|
|
58
|
+
- update all test stubs ([f2d6d53](https://github.com/thi-ng/umbrella/commit/f2d6d53))
|
|
59
|
+
- update imports ([869a773](https://github.com/thi-ng/umbrella/commit/869a773))
|
|
60
60
|
|
|
61
61
|
### [1.0.38](https://github.com/thi-ng/umbrella/tree/@thi.ng/geom-clip-poly@1.0.38) (2020-12-07)
|
|
62
62
|
|
|
@@ -73,6 +73,6 @@ and/or version bumps of transitive dependencies.
|
|
|
73
73
|
|
|
74
74
|
#### 🚀 Features
|
|
75
75
|
|
|
76
|
-
- extract sutherland-hodgeman as own pkg (formerly [@thi.ng/geom-clip](https://github.com/thi-ng/umbrella/tree/main/packages/geom-clip)) ([782193f](https://github.com/thi-ng/umbrella/commit/782193f))
|
|
77
76
|
- extract as own pkg (from [@thi.ng/geom-clip](https://github.com/thi-ng/umbrella/tree/main/packages/geom-clip)) ([34e3262](https://github.com/thi-ng/umbrella/commit/34e3262))
|
|
78
77
|
- add liangBarsky2Raw
|
|
78
|
+
- extract sutherland-hodgeman as own pkg (formerly [@thi.ng/geom-clip](https://github.com/thi-ng/umbrella/tree/main/packages/geom-clip)) ([782193f](https://github.com/thi-ng/umbrella/commit/782193f))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/geom-clip-poly",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.36",
|
|
4
4
|
"description": "2D polygon clipping / offsetting (Sutherland-Hodgeman, Grainer-Hormann)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,17 +34,17 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/geom-isec": "^2.1.
|
|
38
|
-
"@thi.ng/geom-poly-utils": "^2.3.
|
|
39
|
-
"@thi.ng/math": "^5.3.
|
|
40
|
-
"@thi.ng/vectors": "^7.5.
|
|
37
|
+
"@thi.ng/geom-isec": "^2.1.36",
|
|
38
|
+
"@thi.ng/geom-poly-utils": "^2.3.20",
|
|
39
|
+
"@thi.ng/math": "^5.3.14",
|
|
40
|
+
"@thi.ng/vectors": "^7.5.25"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@microsoft/api-extractor": "^7.33.5",
|
|
44
|
-
"@thi.ng/testament": "^0.3.
|
|
44
|
+
"@thi.ng/testament": "^0.3.5",
|
|
45
45
|
"rimraf": "^3.0.2",
|
|
46
46
|
"tools": "^0.0.1",
|
|
47
|
-
"typedoc": "^0.23.
|
|
47
|
+
"typedoc": "^0.23.20",
|
|
48
48
|
"typescript": "^4.8.4"
|
|
49
49
|
},
|
|
50
50
|
"keywords": [
|
|
@@ -68,8 +68,8 @@
|
|
|
68
68
|
"node": ">=12.7"
|
|
69
69
|
},
|
|
70
70
|
"files": [
|
|
71
|
-
"
|
|
72
|
-
"
|
|
71
|
+
"./*.js",
|
|
72
|
+
"./*.d.ts"
|
|
73
73
|
],
|
|
74
74
|
"exports": {
|
|
75
75
|
".": {
|
|
@@ -83,5 +83,5 @@
|
|
|
83
83
|
],
|
|
84
84
|
"year": 2013
|
|
85
85
|
},
|
|
86
|
-
"gitHead": "
|
|
86
|
+
"gitHead": "75ec32ff7f1b7b5e72e7a04ace24732cd5d6c774\n"
|
|
87
87
|
}
|