@thi.ng/colored-noise 1.0.30 → 1.0.31
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 +4 -3
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -388,9 +388,10 @@ directory are using this package.
|
|
|
388
388
|
|
|
389
389
|
A selection:
|
|
390
390
|
|
|
391
|
-
| Screenshot | Description
|
|
392
|
-
|
|
393
|
-
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/
|
|
391
|
+
| Screenshot | Description | Live demo | Source |
|
|
392
|
+
|:-----------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------|:------------------------------------------------------|:-----------------------------------------------------------------------------------|
|
|
393
|
+
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/simd-plot.png" width="240"/> | Fitting, transforming & plotting 10k data points per frame using SIMD | [Demo](https://demo.thi.ng/umbrella/simd-plot/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/simd-plot) |
|
|
394
|
+
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/webgl-float-fbo.jpg" width="240"/> | Drawing to floating point offscreen / multi-pass shader pipeline | [Demo](https://demo.thi.ng/umbrella/webgl-float-fbo/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/webgl-float-fbo) |
|
|
394
395
|
|
|
395
396
|
## API
|
|
396
397
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/colored-noise",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.31",
|
|
4
4
|
"description": "Customizable O(1) ES6 generators for colored noise",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,21 +34,21 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/binary": "^3.3.
|
|
38
|
-
"@thi.ng/random": "^3.6.
|
|
37
|
+
"@thi.ng/binary": "^3.3.34",
|
|
38
|
+
"@thi.ng/random": "^3.6.9"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@microsoft/api-extractor": "^7.
|
|
42
|
-
"@thi.ng/api": "^8.9.
|
|
43
|
-
"@thi.ng/dsp": "^4.6.
|
|
44
|
-
"@thi.ng/dsp-io-wav": "^2.1.
|
|
45
|
-
"@thi.ng/testament": "^0.3.
|
|
46
|
-
"@thi.ng/text-canvas": "^2.6.
|
|
47
|
-
"@thi.ng/transducers": "^8.8.
|
|
48
|
-
"@thi.ng/vectors": "^7.7.
|
|
49
|
-
"rimraf": "^5.0.
|
|
41
|
+
"@microsoft/api-extractor": "^7.38.0",
|
|
42
|
+
"@thi.ng/api": "^8.9.6",
|
|
43
|
+
"@thi.ng/dsp": "^4.6.5",
|
|
44
|
+
"@thi.ng/dsp-io-wav": "^2.1.70",
|
|
45
|
+
"@thi.ng/testament": "^0.3.24",
|
|
46
|
+
"@thi.ng/text-canvas": "^2.6.11",
|
|
47
|
+
"@thi.ng/transducers": "^8.8.3",
|
|
48
|
+
"@thi.ng/vectors": "^7.7.20",
|
|
49
|
+
"rimraf": "^5.0.5",
|
|
50
50
|
"tools": "^0.0.1",
|
|
51
|
-
"typedoc": "^0.25.
|
|
51
|
+
"typedoc": "^0.25.2",
|
|
52
52
|
"typescript": "^5.2.2"
|
|
53
53
|
},
|
|
54
54
|
"keywords": [
|
|
@@ -111,5 +111,5 @@
|
|
|
111
111
|
],
|
|
112
112
|
"year": 2015
|
|
113
113
|
},
|
|
114
|
-
"gitHead": "
|
|
114
|
+
"gitHead": "8d46d9326a9f9b81d65e7e274446f5964f9942ac\n"
|
|
115
115
|
}
|