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

|
|
@@ -12,8 +12,8 @@ This project is part of the
|
|
|
12
12
|
For the Clojure version, please visit: [thi.ng/geom-clj](https://thi.ng/geom-clj)
|
|
13
13
|
|
|
14
14
|
- [About](#about)
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
- [Support packages](#support-packages)
|
|
16
|
+
- [Status](#status)
|
|
17
17
|
- [Installation](#installation)
|
|
18
18
|
- [Dependencies](#dependencies)
|
|
19
19
|
- [Usage examples](#usage-examples)
|
|
@@ -81,7 +81,7 @@ directly and/or perform automatic resampling/conversion if needed):
|
|
|
81
81
|
This package acts as a higher-level frontend for most of the following related
|
|
82
82
|
packages (which are more low-level, lightweight and usable by themselves too):
|
|
83
83
|
|
|
84
|
-
|
|
84
|
+
## Support packages
|
|
85
85
|
|
|
86
86
|
- [@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
|
|
87
87
|
- [@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
|
|
@@ -102,7 +102,7 @@ packages (which are more low-level, lightweight and usable by themselves too):
|
|
|
102
102
|
- [@thi.ng/geom-tessellate](https://github.com/thi-ng/umbrella/tree/develop/packages/geom-tessellate) - 2D/3D convex polygon tessellators
|
|
103
103
|
- [@thi.ng/geom-voronoi](https://github.com/thi-ng/umbrella/tree/develop/packages/geom-voronoi) - Fast, incremental 2D Delaunay & Voronoi mesh implementation
|
|
104
104
|
|
|
105
|
-
|
|
105
|
+
## Status
|
|
106
106
|
|
|
107
107
|
**STABLE** - used in production
|
|
108
108
|
|
|
@@ -188,6 +188,7 @@ A selection:
|
|
|
188
188
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/scenegraph.png" width="240"/> | 2D scenegraph & shape picking | [Demo](https://demo.thi.ng/umbrella/scenegraph/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/scenegraph) |
|
|
189
189
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/scenegraph-image.png" width="240"/> | 2D scenegraph & image map based geometry manipulation | [Demo](https://demo.thi.ng/umbrella/scenegraph-image/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/scenegraph-image) |
|
|
190
190
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/spline-tangent.png" width="240"/> | Compute cubic spline position & tangent using Dual Numbers | [Demo](https://demo.thi.ng/umbrella/spline-tangent/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/spline-tangent) |
|
|
191
|
+
| <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) |
|
|
191
192
|
| <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) |
|
|
192
193
|
|
|
193
194
|
## API
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/geom",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.11",
|
|
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.4.
|
|
39
|
-
"@thi.ng/arrays": "^2.3.
|
|
40
|
-
"@thi.ng/associative": "^6.2.
|
|
41
|
-
"@thi.ng/checks": "^3.2.
|
|
42
|
-
"@thi.ng/defmulti": "^2.1.
|
|
43
|
-
"@thi.ng/equiv": "^2.1.
|
|
44
|
-
"@thi.ng/errors": "^2.
|
|
45
|
-
"@thi.ng/geom-api": "^3.3.
|
|
46
|
-
"@thi.ng/geom-arc": "^2.1.
|
|
47
|
-
"@thi.ng/geom-clip-line": "^2.1.
|
|
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.
|
|
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.4.2",
|
|
39
|
+
"@thi.ng/arrays": "^2.3.6",
|
|
40
|
+
"@thi.ng/associative": "^6.2.7",
|
|
41
|
+
"@thi.ng/checks": "^3.2.5",
|
|
42
|
+
"@thi.ng/defmulti": "^2.1.14",
|
|
43
|
+
"@thi.ng/equiv": "^2.1.10",
|
|
44
|
+
"@thi.ng/errors": "^2.2.0",
|
|
45
|
+
"@thi.ng/geom-api": "^3.3.9",
|
|
46
|
+
"@thi.ng/geom-arc": "^2.1.26",
|
|
47
|
+
"@thi.ng/geom-clip-line": "^2.1.26",
|
|
48
|
+
"@thi.ng/geom-clip-poly": "^2.1.26",
|
|
49
|
+
"@thi.ng/geom-closest-point": "^2.1.23",
|
|
50
|
+
"@thi.ng/geom-hull": "^2.1.23",
|
|
51
|
+
"@thi.ng/geom-isec": "^2.1.26",
|
|
52
|
+
"@thi.ng/geom-poly-utils": "^2.3.10",
|
|
53
|
+
"@thi.ng/geom-resample": "^2.1.26",
|
|
54
|
+
"@thi.ng/geom-splines": "^2.2.0",
|
|
55
|
+
"@thi.ng/geom-subdiv-curve": "^2.1.26",
|
|
56
|
+
"@thi.ng/geom-tessellate": "^2.1.26",
|
|
57
|
+
"@thi.ng/hiccup": "^4.2.16",
|
|
58
|
+
"@thi.ng/hiccup-svg": "^4.3.11",
|
|
59
|
+
"@thi.ng/math": "^5.3.8",
|
|
60
|
+
"@thi.ng/matrices": "^2.1.24",
|
|
61
|
+
"@thi.ng/random": "^3.3.8",
|
|
62
|
+
"@thi.ng/strings": "^3.3.12",
|
|
63
|
+
"@thi.ng/transducers": "^8.3.14",
|
|
64
|
+
"@thi.ng/vectors": "^7.5.15"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@microsoft/api-extractor": "^7.
|
|
68
|
-
"@thi.ng/testament": "^0.
|
|
67
|
+
"@microsoft/api-extractor": "^7.31.1",
|
|
68
|
+
"@thi.ng/testament": "^0.3.0",
|
|
69
69
|
"rimraf": "^3.0.2",
|
|
70
70
|
"tools": "^0.0.1",
|
|
71
71
|
"typedoc": "^0.22.17",
|
|
72
|
-
"typescript": "^4.
|
|
72
|
+
"typescript": "^4.8.3"
|
|
73
73
|
},
|
|
74
74
|
"keywords": [
|
|
75
75
|
"2d",
|
|
@@ -380,5 +380,5 @@
|
|
|
380
380
|
"thi.ng": {
|
|
381
381
|
"year": 2013
|
|
382
382
|
},
|
|
383
|
-
"gitHead": "
|
|
383
|
+
"gitHead": "973139c5aa3b50081020f4cc726a7cc330f77fc7\n"
|
|
384
384
|
}
|