@thi.ng/geom-sdf 1.0.18 → 1.0.20

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**: 2025-04-01T21:42:04Z
3
+ - **Last updated**: 2025-04-16T11:11:14Z
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/domain.d.ts CHANGED
@@ -6,7 +6,7 @@ import type { ReadonlyVec, Vec } from "@thi.ng/vectors/api";
6
6
  *
7
7
  * @param size
8
8
  */
9
- export declare const repeat2: (size: ReadonlyVec) => (p: ReadonlyVec) => Vec;
9
+ export declare const repeat2: (size: ReadonlyVec) => (p: ReadonlyVec) => Vec<number>;
10
10
  /**
11
11
  * @remarks
12
12
  * Ported from: HG_SDF by Mercury Demogroup
@@ -14,7 +14,7 @@ export declare const repeat2: (size: ReadonlyVec) => (p: ReadonlyVec) => Vec;
14
14
  *
15
15
  * @param size
16
16
  */
17
- export declare const repeatMirror2: (size: ReadonlyVec) => (p: ReadonlyVec) => Vec;
17
+ export declare const repeatMirror2: (size: ReadonlyVec) => (p: ReadonlyVec) => Vec<number>;
18
18
  /**
19
19
  * @remarks
20
20
  * Ported from: HG_SDF by Mercury Demogroup
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/geom-sdf",
3
- "version": "1.0.18",
3
+ "version": "1.0.20",
4
4
  "description": "2D Signed Distance Field creation from @thi.ng/geom shapes, conversions, sampling, combinators",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -39,22 +39,22 @@
39
39
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
40
40
  },
41
41
  "dependencies": {
42
- "@thi.ng/api": "^8.11.25",
43
- "@thi.ng/checks": "^3.7.5",
44
- "@thi.ng/defmulti": "^3.0.65",
45
- "@thi.ng/errors": "^2.5.31",
46
- "@thi.ng/geom": "^8.1.37",
47
- "@thi.ng/geom-isoline": "^2.1.167",
48
- "@thi.ng/geom-poly-utils": "^3.0.39",
49
- "@thi.ng/geom-resample": "^3.0.39",
50
- "@thi.ng/math": "^5.11.25",
51
- "@thi.ng/transducers": "^9.2.25",
52
- "@thi.ng/vectors": "^7.13.0"
42
+ "@thi.ng/api": "^8.11.26",
43
+ "@thi.ng/checks": "^3.7.6",
44
+ "@thi.ng/defmulti": "^3.0.66",
45
+ "@thi.ng/errors": "^2.5.32",
46
+ "@thi.ng/geom": "^8.1.39",
47
+ "@thi.ng/geom-isoline": "^2.1.169",
48
+ "@thi.ng/geom-poly-utils": "^3.0.41",
49
+ "@thi.ng/geom-resample": "^3.0.41",
50
+ "@thi.ng/math": "^5.11.26",
51
+ "@thi.ng/transducers": "^9.2.26",
52
+ "@thi.ng/vectors": "^8.0.0"
53
53
  },
54
54
  "devDependencies": {
55
55
  "esbuild": "^0.25.2",
56
- "typedoc": "^0.28.1",
57
- "typescript": "^5.8.2"
56
+ "typedoc": "^0.28.2",
57
+ "typescript": "^5.8.3"
58
58
  },
59
59
  "keywords": [
60
60
  "2d",
@@ -130,5 +130,5 @@
130
130
  "tag": "sdf",
131
131
  "year": 2022
132
132
  },
133
- "gitHead": "87aa2d0e64a357476c10fd57aabdfded13c79f7d\n"
133
+ "gitHead": "c464b6948f92cba90c2ea75b59203dad894fb450\n"
134
134
  }