@thi.ng/colored-noise 0.3.13 → 0.3.16
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 +13 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -20,6 +20,7 @@ This project is part of the
|
|
|
20
20
|
- [Related packages](#related-packages)
|
|
21
21
|
- [Installation](#installation)
|
|
22
22
|
- [Dependencies](#dependencies)
|
|
23
|
+
- [Usage examples](#usage-examples)
|
|
23
24
|
- [API](#api)
|
|
24
25
|
- [Use as IGen in @thi.ng/dsp](#use-as-igen-in-thingdsp)
|
|
25
26
|
- [Authors](#authors)
|
|
@@ -381,6 +382,18 @@ Package sizes (gzipped, pre-treeshake): ESM: 538 bytes
|
|
|
381
382
|
- [@thi.ng/binary](https://github.com/thi-ng/umbrella/tree/develop/packages/binary)
|
|
382
383
|
- [@thi.ng/random](https://github.com/thi-ng/umbrella/tree/develop/packages/random)
|
|
383
384
|
|
|
385
|
+
## Usage examples
|
|
386
|
+
|
|
387
|
+
Several demos in this repo's
|
|
388
|
+
[/examples](https://github.com/thi-ng/umbrella/tree/develop/examples)
|
|
389
|
+
directory are using this package.
|
|
390
|
+
|
|
391
|
+
A selection:
|
|
392
|
+
|
|
393
|
+
| Screenshot | Description | Live demo | Source |
|
|
394
|
+
|:-----------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------|:------------------------------------------------------|:-----------------------------------------------------------------------------------|
|
|
395
|
+
| <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) |
|
|
396
|
+
|
|
384
397
|
## API
|
|
385
398
|
|
|
386
399
|
[Generated API docs](https://docs.thi.ng/umbrella/colored-noise/)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/colored-noise",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.16",
|
|
4
4
|
"description": "Customizable O(1) ES6 generators for colored noise",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,18 +34,18 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/binary": "^3.3.
|
|
38
|
-
"@thi.ng/random": "^3.3.
|
|
37
|
+
"@thi.ng/binary": "^3.3.4",
|
|
38
|
+
"@thi.ng/random": "^3.3.7"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@microsoft/api-extractor": "^7.25.0",
|
|
42
|
-
"@thi.ng/api": "^8.
|
|
43
|
-
"@thi.ng/dsp": "^4.2.
|
|
44
|
-
"@thi.ng/dsp-io-wav": "^2.1.
|
|
45
|
-
"@thi.ng/testament": "^0.2.
|
|
46
|
-
"@thi.ng/text-canvas": "^2.4.
|
|
47
|
-
"@thi.ng/transducers": "^8.3.
|
|
48
|
-
"@thi.ng/vectors": "^7.5.
|
|
42
|
+
"@thi.ng/api": "^8.4.1",
|
|
43
|
+
"@thi.ng/dsp": "^4.2.12",
|
|
44
|
+
"@thi.ng/dsp-io-wav": "^2.1.18",
|
|
45
|
+
"@thi.ng/testament": "^0.2.12",
|
|
46
|
+
"@thi.ng/text-canvas": "^2.4.7",
|
|
47
|
+
"@thi.ng/transducers": "^8.3.13",
|
|
48
|
+
"@thi.ng/vectors": "^7.5.14",
|
|
49
49
|
"rimraf": "^3.0.2",
|
|
50
50
|
"tools": "^0.0.1",
|
|
51
51
|
"typedoc": "^0.22.17",
|
|
@@ -108,5 +108,5 @@
|
|
|
108
108
|
],
|
|
109
109
|
"year": 2015
|
|
110
110
|
},
|
|
111
|
-
"gitHead": "
|
|
111
|
+
"gitHead": "be8423e2019e95c14a096260a93b9762dde0c768\n"
|
|
112
112
|
}
|