@thi.ng/geom-axidraw 0.5.69 → 0.5.70

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-02-22T23:15:26Z
3
+ - **Last updated**: 2024-02-25T14:07:53Z
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/api.d.ts CHANGED
@@ -12,6 +12,8 @@ import type { ReadonlyVec } from "@thi.ng/vectors";
12
12
  *
13
13
  * @example
14
14
  * ```ts
15
+ * import { circle } from "@thi.ng/geom";
16
+ *
15
17
  * // a circle which will be drawn at 25% speed
16
18
  * circle(100, { __axi: { speed: 0.25 } });
17
19
  * ```
package/as-axidraw.d.ts CHANGED
@@ -32,6 +32,9 @@ import type { AsAxiDrawOpts } from "./api.js";
32
32
  *
33
33
  * @example
34
34
  * ```ts
35
+ * import { circle } from "@thi.ng/geom";
36
+ * import { asAxiDraw } from "@thi.ng/geom-axidraw";
37
+ *
35
38
  * [...asAxiDraw(circle(100), { samples: 100 })]
36
39
  * [
37
40
  * [ 'm', [ 10, 0 ] ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/geom-axidraw",
3
- "version": "0.5.69",
3
+ "version": "0.5.70",
4
4
  "description": "Conversion and preparation of thi.ng/geom shapes & shape groups to/from AxiDraw pen plotter draw commands",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -35,18 +35,18 @@
35
35
  "test": "bun test"
36
36
  },
37
37
  "dependencies": {
38
- "@thi.ng/api": "^8.9.25",
39
- "@thi.ng/arrays": "^2.8.2",
40
- "@thi.ng/axidraw": "^1.1.59",
41
- "@thi.ng/compare": "^2.2.21",
42
- "@thi.ng/defmulti": "^3.0.25",
43
- "@thi.ng/geom": "^6.0.31",
44
- "@thi.ng/geom-accel": "^3.5.53",
45
- "@thi.ng/geom-api": "^3.4.69",
46
- "@thi.ng/geom-clip-line": "^2.3.69",
47
- "@thi.ng/geom-isec": "^2.1.111",
48
- "@thi.ng/transducers": "^8.9.6",
49
- "@thi.ng/vectors": "^7.10.11"
38
+ "@thi.ng/api": "^8.9.26",
39
+ "@thi.ng/arrays": "^2.8.3",
40
+ "@thi.ng/axidraw": "^1.1.60",
41
+ "@thi.ng/compare": "^2.2.22",
42
+ "@thi.ng/defmulti": "^3.0.26",
43
+ "@thi.ng/geom": "^6.0.32",
44
+ "@thi.ng/geom-accel": "^3.5.54",
45
+ "@thi.ng/geom-api": "^3.4.70",
46
+ "@thi.ng/geom-clip-line": "^2.3.70",
47
+ "@thi.ng/geom-isec": "^2.1.112",
48
+ "@thi.ng/transducers": "^8.9.7",
49
+ "@thi.ng/vectors": "^7.10.12"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@microsoft/api-extractor": "^7.40.1",
@@ -121,5 +121,5 @@
121
121
  "status": "alpha",
122
122
  "year": 2022
123
123
  },
124
- "gitHead": "b97641d1d722f79a70ea68243fa95e845dca7a43\n"
124
+ "gitHead": "6e20f80dd9df1c8055ffa3c1e4d6f7598add0c0b\n"
125
125
  }