@thi.ng/geom 4.2.0 → 4.2.3

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/README.md +2 -2
  3. package/package.json +34 -34
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2023-01-10T15:20:18Z
3
+ - **Last updated**: 2023-02-10T14:03:10Z
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/README.md CHANGED
@@ -143,7 +143,7 @@ packages (which are more low-level, lightweight and usable by themselves too):
143
143
  - [@thi.ng/geom-accel](https://github.com/thi-ng/umbrella/tree/develop/packages/geom-accel) - n-D spatial indexing data structures with a shared ES6 Map/Set-like API
144
144
  - [@thi.ng/geom-api](https://github.com/thi-ng/umbrella/tree/develop/packages/geom-api) - Shared type & interface declarations for [@thi.ng/geom](https://github.com/thi-ng/umbrella/tree/develop/packages/geom) packages
145
145
  - [@thi.ng/geom-arc](https://github.com/thi-ng/umbrella/tree/develop/packages/geom-arc) - 2D circular / elliptic arc operations
146
- - [@thi.ng/geom-axidraw](https://github.com/thi-ng/umbrella/tree/develop/packages/geom-axidraw) - Conversion and preparation of thi.ng/geom shapes & shape groups to AxiDraw pen plotter draw commands
146
+ - [@thi.ng/geom-axidraw](https://github.com/thi-ng/umbrella/tree/develop/packages/geom-axidraw) - Conversion and preparation of thi.ng/geom shapes & shape groups to/from AxiDraw pen plotter draw commands
147
147
  - [@thi.ng/geom-clip-line](https://github.com/thi-ng/umbrella/tree/develop/packages/geom-clip-line) - 2D line clipping (Liang-Barsky)
148
148
  - [@thi.ng/geom-clip-poly](https://github.com/thi-ng/umbrella/tree/develop/packages/geom-clip-poly) - 2D polygon clipping / offsetting (Sutherland-Hodgeman, Grainer-Hormann)
149
149
  - [@thi.ng/geom-closest-point](https://github.com/thi-ng/umbrella/tree/develop/packages/geom-closest-point) - 2D / 3D closest point / proximity helpers
@@ -187,7 +187,7 @@ For Node.js REPL:
187
187
  const geom = await import("@thi.ng/geom");
188
188
  ```
189
189
 
190
- Package sizes (brotli'd, pre-treeshake): ESM: 12.03 KB
190
+ Package sizes (brotli'd, pre-treeshake): ESM: 12.10 KB
191
191
 
192
192
  ## Dependencies
193
193
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/geom",
3
- "version": "4.2.0",
3
+ "version": "4.2.3",
4
4
  "description": "Functional, polymorphic API for 2D geometry types & SVG generation",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -35,41 +35,41 @@
35
35
  "tool:bpatch": "tools:node-esm tools/bpatch.ts"
36
36
  },
37
37
  "dependencies": {
38
- "@thi.ng/api": "^8.6.3",
39
- "@thi.ng/arrays": "^2.5.1",
40
- "@thi.ng/associative": "^6.2.23",
41
- "@thi.ng/checks": "^3.3.7",
42
- "@thi.ng/defmulti": "^2.1.27",
43
- "@thi.ng/equiv": "^2.1.17",
44
- "@thi.ng/errors": "^2.2.8",
45
- "@thi.ng/geom-api": "^3.4.0",
46
- "@thi.ng/geom-arc": "^2.1.43",
47
- "@thi.ng/geom-clip-line": "^2.3.0",
48
- "@thi.ng/geom-clip-poly": "^2.1.42",
49
- "@thi.ng/geom-closest-point": "^2.1.39",
50
- "@thi.ng/geom-hull": "^2.1.39",
51
- "@thi.ng/geom-isec": "^2.1.42",
52
- "@thi.ng/geom-poly-utils": "^2.3.26",
53
- "@thi.ng/geom-resample": "^2.2.0",
54
- "@thi.ng/geom-splines": "^2.2.17",
55
- "@thi.ng/geom-subdiv-curve": "^2.1.42",
56
- "@thi.ng/geom-tessellate": "^2.1.42",
57
- "@thi.ng/hiccup": "^4.2.29",
58
- "@thi.ng/hiccup-svg": "^4.3.28",
59
- "@thi.ng/math": "^5.4.0",
60
- "@thi.ng/matrices": "^2.1.40",
61
- "@thi.ng/random": "^3.3.21",
62
- "@thi.ng/strings": "^3.3.23",
63
- "@thi.ng/transducers": "^8.3.30",
64
- "@thi.ng/vectors": "^7.5.31"
38
+ "@thi.ng/api": "^8.7.2",
39
+ "@thi.ng/arrays": "^2.5.4",
40
+ "@thi.ng/associative": "^6.2.26",
41
+ "@thi.ng/checks": "^3.3.9",
42
+ "@thi.ng/defmulti": "^2.1.30",
43
+ "@thi.ng/equiv": "^2.1.19",
44
+ "@thi.ng/errors": "^2.2.11",
45
+ "@thi.ng/geom-api": "^3.4.3",
46
+ "@thi.ng/geom-arc": "^2.1.46",
47
+ "@thi.ng/geom-clip-line": "^2.3.3",
48
+ "@thi.ng/geom-clip-poly": "^2.1.45",
49
+ "@thi.ng/geom-closest-point": "^2.1.42",
50
+ "@thi.ng/geom-hull": "^2.1.42",
51
+ "@thi.ng/geom-isec": "^2.1.45",
52
+ "@thi.ng/geom-poly-utils": "^2.3.29",
53
+ "@thi.ng/geom-resample": "^2.2.3",
54
+ "@thi.ng/geom-splines": "^2.2.20",
55
+ "@thi.ng/geom-subdiv-curve": "^2.1.45",
56
+ "@thi.ng/geom-tessellate": "^2.1.45",
57
+ "@thi.ng/hiccup": "^4.2.32",
58
+ "@thi.ng/hiccup-svg": "^4.3.31",
59
+ "@thi.ng/math": "^5.4.3",
60
+ "@thi.ng/matrices": "^2.1.43",
61
+ "@thi.ng/random": "^3.3.24",
62
+ "@thi.ng/strings": "^3.3.26",
63
+ "@thi.ng/transducers": "^8.3.33",
64
+ "@thi.ng/vectors": "^7.6.2"
65
65
  },
66
66
  "devDependencies": {
67
- "@microsoft/api-extractor": "^7.33.7",
68
- "@thi.ng/testament": "^0.3.9",
69
- "rimraf": "^3.0.2",
67
+ "@microsoft/api-extractor": "^7.34.2",
68
+ "@thi.ng/testament": "^0.3.11",
69
+ "rimraf": "^4.1.2",
70
70
  "tools": "^0.0.1",
71
- "typedoc": "^0.23.22",
72
- "typescript": "^4.9.4"
71
+ "typedoc": "^0.23.24",
72
+ "typescript": "^4.9.5"
73
73
  },
74
74
  "keywords": [
75
75
  "2d",
@@ -386,5 +386,5 @@
386
386
  "thi.ng": {
387
387
  "year": 2013
388
388
  },
389
- "gitHead": "3f0b3e2a7c82aefc7e46fb4338369836b5e1b8cf\n"
389
+ "gitHead": "cafa4ecea90fb681949dc3885a5bd6ddefa38b51\n"
390
390
  }