@thi.ng/geom-webgl 0.1.39 → 0.1.41
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/as-webgl.d.ts +2 -2
- package/package.json +15 -14
- package/uv.d.ts +1 -1
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/as-webgl.d.ts
CHANGED
|
@@ -14,8 +14,8 @@ import type { AsWebGLOpts } from "./api.js";
|
|
|
14
14
|
* attrib, which must comply with partial {@link AsWebGLOpts}. Furthermore,
|
|
15
15
|
* shape types which also require conversion to polygon or polyline (e.g.
|
|
16
16
|
* circle), can control that conversion via their `__sample` control attrib (see
|
|
17
|
-
* [`asPolygon
|
|
18
|
-
*
|
|
17
|
+
* [`asPolygon`](https://docs.thi.ng/umbrella/geom/functions/asPolygon.html) for
|
|
18
|
+
* reference).
|
|
19
19
|
*
|
|
20
20
|
* Currently supported shape types (only 2D so far):
|
|
21
21
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/geom-webgl",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.41",
|
|
4
4
|
"description": "WebGL geometry/shape conversion & interop",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -39,20 +39,20 @@
|
|
|
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.6.
|
|
44
|
-
"@thi.ng/defmulti": "^3.0.
|
|
45
|
-
"@thi.ng/errors": "^2.5.
|
|
46
|
-
"@thi.ng/geom": "^8.1.
|
|
47
|
-
"@thi.ng/object-utils": "^1.1.
|
|
48
|
-
"@thi.ng/transducers": "^9.2.
|
|
49
|
-
"@thi.ng/vector-pools": "^3.2.
|
|
50
|
-
"@thi.ng/vectors": "^7.12.
|
|
51
|
-
"@thi.ng/webgl": "^6.9.
|
|
42
|
+
"@thi.ng/api": "^8.11.21",
|
|
43
|
+
"@thi.ng/checks": "^3.6.24",
|
|
44
|
+
"@thi.ng/defmulti": "^3.0.61",
|
|
45
|
+
"@thi.ng/errors": "^2.5.27",
|
|
46
|
+
"@thi.ng/geom": "^8.1.31",
|
|
47
|
+
"@thi.ng/object-utils": "^1.1.15",
|
|
48
|
+
"@thi.ng/transducers": "^9.2.19",
|
|
49
|
+
"@thi.ng/vector-pools": "^3.2.34",
|
|
50
|
+
"@thi.ng/vectors": "^7.12.21",
|
|
51
|
+
"@thi.ng/webgl": "^6.9.38"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"esbuild": "^0.
|
|
55
|
-
"typedoc": "^0.27.
|
|
54
|
+
"esbuild": "^0.25.0",
|
|
55
|
+
"typedoc": "^0.27.7",
|
|
56
56
|
"typescript": "^5.7.3"
|
|
57
57
|
},
|
|
58
58
|
"keywords": [
|
|
@@ -88,7 +88,8 @@
|
|
|
88
88
|
},
|
|
89
89
|
"thi.ng": {
|
|
90
90
|
"status": "alpha",
|
|
91
|
+
"tag": "webgl",
|
|
91
92
|
"year": 2024
|
|
92
93
|
},
|
|
93
|
-
"gitHead": "
|
|
94
|
+
"gitHead": "bee617702ac61d093465b967f8f973dc566faa6b\n"
|
|
94
95
|
}
|
package/uv.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ import type { UVGen } from "./api.js";
|
|
|
10
10
|
export declare const generateUVPointIndex: UVGen;
|
|
11
11
|
/**
|
|
12
12
|
* Higher-order UV coordinate generator. Maps 2D shape vertices into the given
|
|
13
|
-
* target UV rect (by default full [0,1] range), using the shape's bounding
|
|
13
|
+
* target UV rect (by default full `[0,1]` range), using the shape's bounding
|
|
14
14
|
* rect.
|
|
15
15
|
*
|
|
16
16
|
* @remarks
|