@thi.ng/geom 8.1.30 → 8.1.31

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 +3 -2
  3. package/package.json +30 -29
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2025-02-13T16:03:11Z
3
+ - **Last updated**: 2025-02-19T20:59:58Z
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
@@ -7,7 +7,7 @@
7
7
  [![Mastodon Follow](https://img.shields.io/mastodon/follow/109331703950160316?domain=https%3A%2F%2Fmastodon.thi.ng&style=social)](https://mastodon.thi.ng/@toxi)
8
8
 
9
9
  > [!NOTE]
10
- > This is one of 201 standalone projects, maintained as part
10
+ > This is one of 202 standalone projects, maintained as part
11
11
  > of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
12
12
  > and anti-framework.
13
13
  >
@@ -487,7 +487,7 @@ Note: @thi.ng/api is in _most_ cases a type-only import (not used at runtime)
487
487
 
488
488
  ## Usage examples
489
489
 
490
- 37 projects in this repo's
490
+ 38 projects in this repo's
491
491
  [/examples](https://github.com/thi-ng/umbrella/tree/develop/examples)
492
492
  directory are using this package:
493
493
 
@@ -530,6 +530,7 @@ directory are using this package:
530
530
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/svg-resample.png" width="240"/> | SVG path parsing & dynamic resampling | [Demo](https://demo.thi.ng/umbrella/svg-resample/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/svg-resample) |
531
531
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/text-canvas.png" width="240"/> | 3D wireframe textmode demo | [Demo](https://demo.thi.ng/umbrella/text-canvas/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/text-canvas) |
532
532
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/trace-bitmap.jpg" width="240"/> | Multi-layer vectorization & dithering of bitmap images | [Demo](https://demo.thi.ng/umbrella/trace-bitmap/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/trace-bitmap) |
533
+ | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/tsne-colors.avif" width="240"/> | Animated t-SNE visualization of 4D data | [Demo](https://demo.thi.ng/umbrella/tsne-colors/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/tsne-colors) |
533
534
 
534
535
  ## API
535
536
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/geom",
3
- "version": "8.1.30",
3
+ "version": "8.1.31",
4
4
  "description": "Functional, polymorphic API for 2D geometry types & SVG generation",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -40,33 +40,33 @@
40
40
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
41
41
  },
42
42
  "dependencies": {
43
- "@thi.ng/adjacency": "^3.0.27",
44
- "@thi.ng/api": "^8.11.20",
45
- "@thi.ng/arrays": "^2.10.15",
46
- "@thi.ng/checks": "^3.6.23",
47
- "@thi.ng/defmulti": "^3.0.60",
48
- "@thi.ng/equiv": "^2.1.76",
49
- "@thi.ng/errors": "^2.5.26",
50
- "@thi.ng/geom-arc": "^2.1.165",
51
- "@thi.ng/geom-clip-line": "^2.3.122",
52
- "@thi.ng/geom-clip-poly": "^2.1.164",
53
- "@thi.ng/geom-closest-point": "^2.1.160",
54
- "@thi.ng/geom-hull": "^2.1.160",
55
- "@thi.ng/geom-isec": "^4.0.32",
56
- "@thi.ng/geom-poly-utils": "^3.0.32",
57
- "@thi.ng/geom-resample": "^3.0.32",
58
- "@thi.ng/geom-splines": "^2.3.32",
59
- "@thi.ng/geom-subdiv-curve": "^3.0.32",
60
- "@thi.ng/geom-tessellate": "^3.0.32",
61
- "@thi.ng/hiccup": "^5.3.3",
62
- "@thi.ng/hiccup-svg": "^5.4.20",
63
- "@thi.ng/math": "^5.11.20",
64
- "@thi.ng/matrices": "^2.4.32",
65
- "@thi.ng/object-utils": "^1.1.14",
66
- "@thi.ng/random": "^4.1.11",
67
- "@thi.ng/strings": "^3.9.5",
68
- "@thi.ng/transducers": "^9.2.18",
69
- "@thi.ng/vectors": "^7.12.20"
43
+ "@thi.ng/adjacency": "^3.0.28",
44
+ "@thi.ng/api": "^8.11.21",
45
+ "@thi.ng/arrays": "^2.10.16",
46
+ "@thi.ng/checks": "^3.6.24",
47
+ "@thi.ng/defmulti": "^3.0.61",
48
+ "@thi.ng/equiv": "^2.1.77",
49
+ "@thi.ng/errors": "^2.5.27",
50
+ "@thi.ng/geom-arc": "^2.1.166",
51
+ "@thi.ng/geom-clip-line": "^2.3.123",
52
+ "@thi.ng/geom-clip-poly": "^2.1.165",
53
+ "@thi.ng/geom-closest-point": "^2.1.161",
54
+ "@thi.ng/geom-hull": "^2.1.161",
55
+ "@thi.ng/geom-isec": "^4.0.33",
56
+ "@thi.ng/geom-poly-utils": "^3.0.33",
57
+ "@thi.ng/geom-resample": "^3.0.33",
58
+ "@thi.ng/geom-splines": "^2.3.33",
59
+ "@thi.ng/geom-subdiv-curve": "^3.0.33",
60
+ "@thi.ng/geom-tessellate": "^3.0.33",
61
+ "@thi.ng/hiccup": "^5.3.4",
62
+ "@thi.ng/hiccup-svg": "^5.4.21",
63
+ "@thi.ng/math": "^5.11.21",
64
+ "@thi.ng/matrices": "^2.4.33",
65
+ "@thi.ng/object-utils": "^1.1.15",
66
+ "@thi.ng/random": "^4.1.12",
67
+ "@thi.ng/strings": "^3.9.6",
68
+ "@thi.ng/transducers": "^9.2.19",
69
+ "@thi.ng/vectors": "^7.12.21"
70
70
  },
71
71
  "devDependencies": {
72
72
  "esbuild": "^0.25.0",
@@ -530,7 +530,8 @@
530
530
  "viz",
531
531
  "webgl"
532
532
  ],
533
+ "tag": "geometry",
533
534
  "year": 2013
534
535
  },
535
- "gitHead": "9a0b33253fef092aaf301decf6ecd54317874d4c\n"
536
+ "gitHead": "bee617702ac61d093465b967f8f973dc566faa6b\n"
536
537
  }