@thi.ng/geom 4.0.0 → 4.0.1
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 +7 -10
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<!-- This file is generated - DO NOT EDIT! -->
|
|
2
2
|
|
|
3
|
-
# 
|
|
3
|
+
# 
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@thi.ng/geom)
|
|
6
6
|

|
|
7
|
-
[](https://mastodon.thi.ng/@toxi)
|
|
8
8
|
|
|
9
9
|
This project is part of the
|
|
10
10
|
[@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo.
|
|
@@ -27,7 +27,7 @@ For the Clojure version, please visit: [thi.ng/geom-clj](https://thi.ng/geom-clj
|
|
|
27
27
|
|
|
28
28
|
## About
|
|
29
29
|
|
|
30
|
-
Functional, polymorphic API for 2D geometry types & SVG generation
|
|
30
|
+
Functional, polymorphic API for 2D geometry types & SVG generation
|
|
31
31
|
|
|
32
32
|
This project is a partially ported from the [Clojure version of the same
|
|
33
33
|
name](http://thi.ng/geom-clj). All polymorphic operations built on
|
|
@@ -182,11 +182,8 @@ ES module import:
|
|
|
182
182
|
|
|
183
183
|
For Node.js REPL:
|
|
184
184
|
|
|
185
|
-
```
|
|
186
|
-
|
|
187
|
-
node --experimental-repl-await
|
|
188
|
-
|
|
189
|
-
> const geom = await import("@thi.ng/geom");
|
|
185
|
+
```js
|
|
186
|
+
const geom = await import("@thi.ng/geom");
|
|
190
187
|
```
|
|
191
188
|
|
|
192
189
|
Package sizes (brotli'd, pre-treeshake): ESM: 11.98 KB
|
|
@@ -257,7 +254,7 @@ TODO
|
|
|
257
254
|
|
|
258
255
|
## Authors
|
|
259
256
|
|
|
260
|
-
Karsten Schmidt
|
|
257
|
+
- [Karsten Schmidt](https://thi.ng)
|
|
261
258
|
|
|
262
259
|
If this project contributes to an academic publication, please cite it as:
|
|
263
260
|
|
|
@@ -272,4 +269,4 @@ If this project contributes to an academic publication, please cite it as:
|
|
|
272
269
|
|
|
273
270
|
## License
|
|
274
271
|
|
|
275
|
-
© 2013 - 2022 Karsten Schmidt // Apache
|
|
272
|
+
© 2013 - 2022 Karsten Schmidt // Apache License 2.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/geom",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"description": "Functional, polymorphic API for 2D geometry types & SVG generation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"url": "https://patreon.com/thing_umbrella"
|
|
22
22
|
}
|
|
23
23
|
],
|
|
24
|
-
"author": "Karsten Schmidt
|
|
24
|
+
"author": "Karsten Schmidt (https://thi.ng)",
|
|
25
25
|
"license": "Apache-2.0",
|
|
26
26
|
"scripts": {
|
|
27
27
|
"build": "yarn clean && tsc --declaration",
|
|
@@ -35,41 +35,41 @@
|
|
|
35
35
|
"tool:bpatch": "tools:node-esm tools/bpatch.ts"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@thi.ng/api": "^8.
|
|
39
|
-
"@thi.ng/arrays": "^2.4.
|
|
40
|
-
"@thi.ng/associative": "^6.2.
|
|
41
|
-
"@thi.ng/checks": "^3.3.
|
|
42
|
-
"@thi.ng/defmulti": "^2.1.
|
|
43
|
-
"@thi.ng/equiv": "^2.1.
|
|
44
|
-
"@thi.ng/errors": "^2.2.
|
|
45
|
-
"@thi.ng/geom-api": "^3.3.
|
|
46
|
-
"@thi.ng/geom-arc": "^2.1.
|
|
47
|
-
"@thi.ng/geom-clip-line": "^2.2.
|
|
48
|
-
"@thi.ng/geom-clip-poly": "^2.1.
|
|
49
|
-
"@thi.ng/geom-closest-point": "^2.1.
|
|
50
|
-
"@thi.ng/geom-hull": "^2.1.
|
|
51
|
-
"@thi.ng/geom-isec": "^2.1.
|
|
52
|
-
"@thi.ng/geom-poly-utils": "^2.3.
|
|
53
|
-
"@thi.ng/geom-resample": "^2.1.
|
|
54
|
-
"@thi.ng/geom-splines": "^2.2.
|
|
55
|
-
"@thi.ng/geom-subdiv-curve": "^2.1.
|
|
56
|
-
"@thi.ng/geom-tessellate": "^2.1.
|
|
57
|
-
"@thi.ng/hiccup": "^4.2.
|
|
58
|
-
"@thi.ng/hiccup-svg": "^4.3.
|
|
59
|
-
"@thi.ng/math": "^5.3.
|
|
60
|
-
"@thi.ng/matrices": "^2.1.
|
|
61
|
-
"@thi.ng/random": "^3.3.
|
|
62
|
-
"@thi.ng/strings": "^3.3.
|
|
63
|
-
"@thi.ng/transducers": "^8.3.
|
|
64
|
-
"@thi.ng/vectors": "^7.5.
|
|
38
|
+
"@thi.ng/api": "^8.6.0",
|
|
39
|
+
"@thi.ng/arrays": "^2.4.5",
|
|
40
|
+
"@thi.ng/associative": "^6.2.19",
|
|
41
|
+
"@thi.ng/checks": "^3.3.5",
|
|
42
|
+
"@thi.ng/defmulti": "^2.1.24",
|
|
43
|
+
"@thi.ng/equiv": "^2.1.15",
|
|
44
|
+
"@thi.ng/errors": "^2.2.6",
|
|
45
|
+
"@thi.ng/geom-api": "^3.3.21",
|
|
46
|
+
"@thi.ng/geom-arc": "^2.1.39",
|
|
47
|
+
"@thi.ng/geom-clip-line": "^2.2.1",
|
|
48
|
+
"@thi.ng/geom-clip-poly": "^2.1.38",
|
|
49
|
+
"@thi.ng/geom-closest-point": "^2.1.35",
|
|
50
|
+
"@thi.ng/geom-hull": "^2.1.35",
|
|
51
|
+
"@thi.ng/geom-isec": "^2.1.38",
|
|
52
|
+
"@thi.ng/geom-poly-utils": "^2.3.22",
|
|
53
|
+
"@thi.ng/geom-resample": "^2.1.39",
|
|
54
|
+
"@thi.ng/geom-splines": "^2.2.13",
|
|
55
|
+
"@thi.ng/geom-subdiv-curve": "^2.1.38",
|
|
56
|
+
"@thi.ng/geom-tessellate": "^2.1.38",
|
|
57
|
+
"@thi.ng/hiccup": "^4.2.26",
|
|
58
|
+
"@thi.ng/hiccup-svg": "^4.3.24",
|
|
59
|
+
"@thi.ng/math": "^5.3.16",
|
|
60
|
+
"@thi.ng/matrices": "^2.1.36",
|
|
61
|
+
"@thi.ng/random": "^3.3.18",
|
|
62
|
+
"@thi.ng/strings": "^3.3.20",
|
|
63
|
+
"@thi.ng/transducers": "^8.3.26",
|
|
64
|
+
"@thi.ng/vectors": "^7.5.27"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@microsoft/api-extractor": "^7.33.
|
|
68
|
-
"@thi.ng/testament": "^0.3.
|
|
67
|
+
"@microsoft/api-extractor": "^7.33.7",
|
|
68
|
+
"@thi.ng/testament": "^0.3.7",
|
|
69
69
|
"rimraf": "^3.0.2",
|
|
70
70
|
"tools": "^0.0.1",
|
|
71
|
-
"typedoc": "^0.23.
|
|
72
|
-
"typescript": "^4.
|
|
71
|
+
"typedoc": "^0.23.22",
|
|
72
|
+
"typescript": "^4.9.4"
|
|
73
73
|
},
|
|
74
74
|
"keywords": [
|
|
75
75
|
"2d",
|
|
@@ -383,5 +383,5 @@
|
|
|
383
383
|
"thi.ng": {
|
|
384
384
|
"year": 2013
|
|
385
385
|
},
|
|
386
|
-
"gitHead": "
|
|
386
|
+
"gitHead": "f445a9cc8022bcdebbf6ff91fd66ced016d72f01\n"
|
|
387
387
|
}
|