@thi.ng/geom-isoline 2.1.159 → 2.1.161
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 +1 -1
- package/index.d.ts +1 -1
- package/package.json +8 -7
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
[](https://mastodon.thi.ng/@toxi)
|
|
8
8
|
|
|
9
9
|
> [!NOTE]
|
|
10
|
-
> This is one of
|
|
10
|
+
> This is one of 202 standalone projects, maintained as part
|
|
11
11
|
> of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
|
|
12
12
|
> and anti-framework.
|
|
13
13
|
>
|
package/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export declare const setBorder: (src: Vec, w: number, h: number, val: number) =>
|
|
|
6
6
|
* value. The computation is implemented as a generator, yielding 1 point array
|
|
7
7
|
* per found contour. The returned points optionally can be scaled using `scale`
|
|
8
8
|
* factor or vector. The default scale of 1.0 will result in coords in these
|
|
9
|
-
* ranges: [0.5
|
|
9
|
+
* ranges: `[0.5,w-0.5]` (for X) and `[0.5,h-0.5]` (for Y).
|
|
10
10
|
*
|
|
11
11
|
* @param src -
|
|
12
12
|
* @param w -
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/geom-isoline",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.161",
|
|
4
4
|
"description": "Fast 2D contour line extraction / generation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -39,13 +39,13 @@
|
|
|
39
39
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@thi.ng/api": "^8.11.
|
|
43
|
-
"@thi.ng/transducers": "^9.2.
|
|
44
|
-
"@thi.ng/vectors": "^7.12.
|
|
42
|
+
"@thi.ng/api": "^8.11.21",
|
|
43
|
+
"@thi.ng/transducers": "^9.2.19",
|
|
44
|
+
"@thi.ng/vectors": "^7.12.21"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"esbuild": "^0.
|
|
48
|
-
"typedoc": "^0.27.
|
|
47
|
+
"esbuild": "^0.25.0",
|
|
48
|
+
"typedoc": "^0.27.7",
|
|
49
49
|
"typescript": "^5.7.3"
|
|
50
50
|
},
|
|
51
51
|
"keywords": [
|
|
@@ -78,7 +78,8 @@
|
|
|
78
78
|
"thi.ng": {
|
|
79
79
|
"alias": "iso",
|
|
80
80
|
"parent": "@thi.ng/geom",
|
|
81
|
+
"tag": "contours",
|
|
81
82
|
"year": 2015
|
|
82
83
|
},
|
|
83
|
-
"gitHead": "
|
|
84
|
+
"gitHead": "bee617702ac61d093465b967f8f973dc566faa6b\n"
|
|
84
85
|
}
|