@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 +1 -1
- package/domain.d.ts +2 -2
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
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.
|
|
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.
|
|
43
|
-
"@thi.ng/checks": "^3.7.
|
|
44
|
-
"@thi.ng/defmulti": "^3.0.
|
|
45
|
-
"@thi.ng/errors": "^2.5.
|
|
46
|
-
"@thi.ng/geom": "^8.1.
|
|
47
|
-
"@thi.ng/geom-isoline": "^2.1.
|
|
48
|
-
"@thi.ng/geom-poly-utils": "^3.0.
|
|
49
|
-
"@thi.ng/geom-resample": "^3.0.
|
|
50
|
-
"@thi.ng/math": "^5.11.
|
|
51
|
-
"@thi.ng/transducers": "^9.2.
|
|
52
|
-
"@thi.ng/vectors": "^
|
|
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.
|
|
57
|
-
"typescript": "^5.8.
|
|
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": "
|
|
133
|
+
"gitHead": "c464b6948f92cba90c2ea75b59203dad894fb450\n"
|
|
134
134
|
}
|