@thi.ng/poisson 3.2.33 → 3.2.35
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/package.json +9 -9
- package/poisson.d.ts +1 -1
- package/stratified.d.ts +2 -2
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/poisson",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.35",
|
|
4
4
|
"description": "nD Stratified grid and Poisson-disc sampling w/ support for spatial density functions and custom PRNGs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -39,16 +39,16 @@
|
|
|
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/geom-accel": "^4.1.
|
|
45
|
-
"@thi.ng/random": "^4.1.
|
|
46
|
-
"@thi.ng/vectors": "^
|
|
42
|
+
"@thi.ng/api": "^8.11.26",
|
|
43
|
+
"@thi.ng/checks": "^3.7.6",
|
|
44
|
+
"@thi.ng/geom-accel": "^4.1.35",
|
|
45
|
+
"@thi.ng/random": "^4.1.17",
|
|
46
|
+
"@thi.ng/vectors": "^8.0.1"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"esbuild": "^0.25.2",
|
|
50
|
-
"typedoc": "^0.28.
|
|
51
|
-
"typescript": "^5.8.
|
|
50
|
+
"typedoc": "^0.28.2",
|
|
51
|
+
"typescript": "^5.8.3"
|
|
52
52
|
},
|
|
53
53
|
"keywords": [
|
|
54
54
|
"2d",
|
|
@@ -98,5 +98,5 @@
|
|
|
98
98
|
],
|
|
99
99
|
"year": 2016
|
|
100
100
|
},
|
|
101
|
-
"gitHead": "
|
|
101
|
+
"gitHead": "69080248c98f9555642384aed76a0431e9f44835\n"
|
|
102
102
|
}
|
package/poisson.d.ts
CHANGED
package/stratified.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ import type { StratifiedGridOpts } from "./api.js";
|
|
|
8
8
|
*
|
|
9
9
|
* @param opts -
|
|
10
10
|
*/
|
|
11
|
-
export declare function stratifiedGrid2(opts: StratifiedGridOpts): Generator<import("@thi.ng/vectors").Vec
|
|
11
|
+
export declare function stratifiedGrid2(opts: StratifiedGridOpts): Generator<import("@thi.ng/vectors").Vec<number>, void, unknown>;
|
|
12
12
|
/**
|
|
13
13
|
* Yields iterator of 3D point samples of for given stratified grid
|
|
14
14
|
* config.
|
|
@@ -18,5 +18,5 @@ export declare function stratifiedGrid2(opts: StratifiedGridOpts): Generator<imp
|
|
|
18
18
|
*
|
|
19
19
|
* @param opts -
|
|
20
20
|
*/
|
|
21
|
-
export declare function stratifiedGrid3(opts: StratifiedGridOpts): Generator<import("@thi.ng/vectors").Vec
|
|
21
|
+
export declare function stratifiedGrid3(opts: StratifiedGridOpts): Generator<import("@thi.ng/vectors").Vec<number>, void, unknown>;
|
|
22
22
|
//# sourceMappingURL=stratified.d.ts.map
|