@thi.ng/geom 4.2.8 → 4.2.9
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 +11 -0
- package/package.json +12 -3
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -17,6 +17,7 @@ For the Clojure version, please visit: [thi.ng/geom-clj](https://thi.ng/geom-clj
|
|
|
17
17
|
- [SVG support](#svg-support)
|
|
18
18
|
- [Polymorphic operations](#polymorphic-operations)
|
|
19
19
|
- [Support packages](#support-packages)
|
|
20
|
+
- [Related packages](#related-packages)
|
|
20
21
|
- [Status](#status)
|
|
21
22
|
- [Installation](#installation)
|
|
22
23
|
- [Dependencies](#dependencies)
|
|
@@ -161,6 +162,16 @@ packages (which are more low-level, lightweight and usable by themselves too):
|
|
|
161
162
|
- [@thi.ng/geom-trace-bitmap](https://github.com/thi-ng/umbrella/tree/develop/packages/geom-trace-bitmap) - Bitmap image to hairline vector and point cloud conversions
|
|
162
163
|
- [@thi.ng/geom-voronoi](https://github.com/thi-ng/umbrella/tree/develop/packages/geom-voronoi) - Fast, incremental 2D Delaunay & Voronoi mesh implementation
|
|
163
164
|
|
|
165
|
+
## Related packages
|
|
166
|
+
|
|
167
|
+
- [@thi.ng/axidraw](https://github.com/thi-ng/umbrella/tree/develop/packages/axidraw) - Minimal AxiDraw plotter/drawing machine controller for Node.js
|
|
168
|
+
- [@thi.ng/color](https://github.com/thi-ng/umbrella/tree/develop/packages/color) - Array-based color types, CSS parsing, conversions, transformations, declarative theme generation, gradients, presets
|
|
169
|
+
- [@thi.ng/hiccup](https://github.com/thi-ng/umbrella/tree/develop/packages/hiccup) - HTML/SVG/XML serialization of nested data structures, iterables & closures
|
|
170
|
+
- [@thi.ng/hiccup-canvas](https://github.com/thi-ng/umbrella/tree/develop/packages/hiccup-canvas) - Hiccup shape tree renderer for vanilla Canvas 2D contexts
|
|
171
|
+
- [@thi.ng/hiccup-svg](https://github.com/thi-ng/umbrella/tree/develop/packages/hiccup-svg) - SVG element functions for [@thi.ng/hiccup](https://github.com/thi-ng/umbrella/tree/develop/packages/hiccup) & related tooling
|
|
172
|
+
- [@thi.ng/viz](https://github.com/thi-ng/umbrella/tree/develop/packages/viz) - Declarative, functional & multi-format data visualization toolkit based around [@thi.ng/hiccup](https://github.com/thi-ng/umbrella/tree/develop/packages/hiccup)
|
|
173
|
+
- [@thi.ng/webgl](https://github.com/thi-ng/umbrella/tree/develop/packages/webgl) - WebGL & GLSL abstraction layer
|
|
174
|
+
|
|
164
175
|
## Status
|
|
165
176
|
|
|
166
177
|
**STABLE** - used in production
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/geom",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.9",
|
|
4
4
|
"description": "Functional, polymorphic API for 2D geometry types & SVG generation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"@thi.ng/geom-splines": "^2.2.24",
|
|
55
55
|
"@thi.ng/geom-subdiv-curve": "^2.1.49",
|
|
56
56
|
"@thi.ng/geom-tessellate": "^2.1.49",
|
|
57
|
-
"@thi.ng/hiccup": "^4.2.
|
|
57
|
+
"@thi.ng/hiccup": "^4.2.36",
|
|
58
58
|
"@thi.ng/hiccup-svg": "^4.3.36",
|
|
59
59
|
"@thi.ng/math": "^5.4.4",
|
|
60
60
|
"@thi.ng/matrices": "^2.1.47",
|
|
@@ -384,7 +384,16 @@
|
|
|
384
384
|
}
|
|
385
385
|
},
|
|
386
386
|
"thi.ng": {
|
|
387
|
+
"related": [
|
|
388
|
+
"axidraw",
|
|
389
|
+
"color",
|
|
390
|
+
"hiccup",
|
|
391
|
+
"hiccup-canvas",
|
|
392
|
+
"hiccup-svg",
|
|
393
|
+
"viz",
|
|
394
|
+
"webgl"
|
|
395
|
+
],
|
|
387
396
|
"year": 2013
|
|
388
397
|
},
|
|
389
|
-
"gitHead": "
|
|
398
|
+
"gitHead": "31dd56eba72edd73a3ced5002c0f5145ce3d42d6\n"
|
|
390
399
|
}
|