@thi.ng/rasterize 0.3.19 → 0.3.20
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 +5 -5
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<!-- This file is generated - DO NOT EDIT! -->
|
|
2
2
|
|
|
3
|
-
# 
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@thi.ng/rasterize)
|
|
6
6
|

|
|
@@ -16,8 +16,8 @@ This project is part of the
|
|
|
16
16
|
- [Rect](#rect)
|
|
17
17
|
- [Flood fill](#flood-fill)
|
|
18
18
|
- [Custom shaders](#custom-shaders)
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
- [Status](#status)
|
|
20
|
+
- [Related packages](#related-packages)
|
|
21
21
|
- [Installation](#installation)
|
|
22
22
|
- [Dependencies](#dependencies)
|
|
23
23
|
- [API](#api)
|
|
@@ -118,13 +118,13 @@ drawCircle(img, W/2, W/2, W/2 - 4, defUVGradient(W, W), true);
|
|
|
118
118
|
|
|
119
119
|

|
|
120
120
|
|
|
121
|
-
|
|
121
|
+
## Status
|
|
122
122
|
|
|
123
123
|
**ALPHA** - bleeding edge / work-in-progress
|
|
124
124
|
|
|
125
125
|
[Search or submit any issues for this package](https://github.com/thi-ng/umbrella/issues?q=%5Brasterize%5D+in%3Atitle)
|
|
126
126
|
|
|
127
|
-
|
|
127
|
+
## Related packages
|
|
128
128
|
|
|
129
129
|
- [@thi.ng/grid-iterators](https://github.com/thi-ng/umbrella/tree/develop/packages/grid-iterators) - 2D grid and shape iterators w/ multiple orderings
|
|
130
130
|
- [@thi.ng/pixel](https://github.com/thi-ng/umbrella/tree/develop/packages/pixel) - Typedarray integer & float pixel buffers w/ customizable formats, blitting, drawing, convolution
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/rasterize",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.20",
|
|
4
4
|
"description": "2D shape drawing & rasterization",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,20 +34,20 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/api": "^8.4.
|
|
38
|
-
"@thi.ng/checks": "^3.2.
|
|
39
|
-
"@thi.ng/equiv": "^2.1.
|
|
40
|
-
"@thi.ng/grid-iterators": "^2.3.
|
|
41
|
-
"@thi.ng/random": "^3.3.
|
|
42
|
-
"@thi.ng/transducers": "^8.3.
|
|
37
|
+
"@thi.ng/api": "^8.4.2",
|
|
38
|
+
"@thi.ng/checks": "^3.2.5",
|
|
39
|
+
"@thi.ng/equiv": "^2.1.10",
|
|
40
|
+
"@thi.ng/grid-iterators": "^2.3.13",
|
|
41
|
+
"@thi.ng/random": "^3.3.8",
|
|
42
|
+
"@thi.ng/transducers": "^8.3.14"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@microsoft/api-extractor": "^7.
|
|
46
|
-
"@thi.ng/testament": "^0.
|
|
45
|
+
"@microsoft/api-extractor": "^7.31.1",
|
|
46
|
+
"@thi.ng/testament": "^0.3.0",
|
|
47
47
|
"rimraf": "^3.0.2",
|
|
48
48
|
"tools": "^0.0.1",
|
|
49
49
|
"typedoc": "^0.22.17",
|
|
50
|
-
"typescript": "^4.
|
|
50
|
+
"typescript": "^4.8.3"
|
|
51
51
|
},
|
|
52
52
|
"keywords": [
|
|
53
53
|
"2d",
|
|
@@ -118,5 +118,5 @@
|
|
|
118
118
|
"status": "alpha",
|
|
119
119
|
"year": 2021
|
|
120
120
|
},
|
|
121
|
-
"gitHead": "
|
|
121
|
+
"gitHead": "973139c5aa3b50081020f4cc726a7cc330f77fc7\n"
|
|
122
122
|
}
|