@thi.ng/geom-clip-poly 2.1.5 → 2.1.8
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 +4 -7
- package/package.json +13 -11
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -20,13 +20,10 @@ This project is part of the
|
|
|
20
20
|
|
|
21
21
|
## About
|
|
22
22
|
|
|
23
|
-
2D
|
|
23
|
+
2D polygon clipping / offsetting (Sutherland-Hodgeman, Grainer-Hormann). This is a support package for [@thi.ng/geom](https://github.com/thi-ng/umbrella/tree/develop/packages/geom).
|
|
24
24
|
|
|
25
|
-
Current
|
|
26
|
-
(Java) and Clojure
|
|
27
|
-
|
|
28
|
-
This package has been extracted from the former (now obsolete)
|
|
29
|
-
@thi.ng/geom-clip package.
|
|
25
|
+
Current implementations are based on [toxiclibs](http://toxiclibs.org)
|
|
26
|
+
(Java) and Clojure versions [thi.ng/geom-clj](http://thi.ng/geom-clj).
|
|
30
27
|
|
|
31
28
|
### Status
|
|
32
29
|
|
|
@@ -93,4 +90,4 @@ If this project contributes to an academic publication, please cite it as:
|
|
|
93
90
|
|
|
94
91
|
## License
|
|
95
92
|
|
|
96
|
-
© 2013 -
|
|
93
|
+
© 2013 - 2022 Karsten Schmidt // Apache Software License 2.0
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/geom-clip-poly",
|
|
3
|
-
"version": "2.1.
|
|
4
|
-
"description": "2D
|
|
3
|
+
"version": "2.1.8",
|
|
4
|
+
"description": "2D polygon clipping / offsetting (Sutherland-Hodgeman, Grainer-Hormann)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
7
7
|
"typings": "./index.d.ts",
|
|
@@ -34,18 +34,18 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/geom-isec": "^2.1.
|
|
38
|
-
"@thi.ng/geom-poly-utils": "^2.
|
|
39
|
-
"@thi.ng/math": "^5.
|
|
40
|
-
"@thi.ng/vectors": "^7.
|
|
37
|
+
"@thi.ng/geom-isec": "^2.1.8",
|
|
38
|
+
"@thi.ng/geom-poly-utils": "^2.2.0",
|
|
39
|
+
"@thi.ng/math": "^5.3.0",
|
|
40
|
+
"@thi.ng/vectors": "^7.5.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@microsoft/api-extractor": "^7.
|
|
44
|
-
"@thi.ng/testament": "^0.2.
|
|
43
|
+
"@microsoft/api-extractor": "^7.19.4",
|
|
44
|
+
"@thi.ng/testament": "^0.2.4",
|
|
45
45
|
"rimraf": "^3.0.2",
|
|
46
46
|
"tools": "^0.0.1",
|
|
47
|
-
"typedoc": "^0.22.
|
|
48
|
-
"typescript": "^4.
|
|
47
|
+
"typedoc": "^0.22.13",
|
|
48
|
+
"typescript": "^4.6.2"
|
|
49
49
|
},
|
|
50
50
|
"keywords": [
|
|
51
51
|
"2d",
|
|
@@ -53,7 +53,9 @@
|
|
|
53
53
|
"clipping",
|
|
54
54
|
"convex",
|
|
55
55
|
"geometry",
|
|
56
|
+
"grainer-hormann",
|
|
56
57
|
"graphics",
|
|
58
|
+
"offset",
|
|
57
59
|
"polygon",
|
|
58
60
|
"rect",
|
|
59
61
|
"sutherland-hodgeman",
|
|
@@ -81,5 +83,5 @@
|
|
|
81
83
|
],
|
|
82
84
|
"year": 2013
|
|
83
85
|
},
|
|
84
|
-
"gitHead": "
|
|
86
|
+
"gitHead": "0fc692a3225c068aacafdc4cb6140cf603c67ad8\n"
|
|
85
87
|
}
|