@thi.ng/grid-iterators 2.3.12 → 2.3.13
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 +12 -12
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/grid-iterators)
|
|
6
6
|

|
|
@@ -24,8 +24,8 @@ This project is part of the
|
|
|
24
24
|
- [Zigzag rows](#zigzag-rows)
|
|
25
25
|
- [Flood filling](#flood-filling)
|
|
26
26
|
- [Miscellaneous](#miscellaneous)
|
|
27
|
-
|
|
28
|
-
|
|
27
|
+
- [Status](#status)
|
|
28
|
+
- [Related packages](#related-packages)
|
|
29
29
|
- [Installation](#installation)
|
|
30
30
|
- [Dependencies](#dependencies)
|
|
31
31
|
- [Usage examples](#usage-examples)
|
|
@@ -190,13 +190,13 @@ optional clipping:
|
|
|
190
190
|
- [vline](https://github.com/thi-ng/umbrella/tree/develop/packages/grid-iterators/src/hvline.ts)
|
|
191
191
|
- [line](https://github.com/thi-ng/umbrella/tree/develop/packages/grid-iterators/src/line.ts) (Bresenham)
|
|
192
192
|
|
|
193
|
-
|
|
193
|
+
## Status
|
|
194
194
|
|
|
195
195
|
**STABLE** - used in production
|
|
196
196
|
|
|
197
197
|
[Search or submit any issues for this package](https://github.com/thi-ng/umbrella/issues?q=%5Bgrid-iterators%5D+in%3Atitle)
|
|
198
198
|
|
|
199
|
-
|
|
199
|
+
## Related packages
|
|
200
200
|
|
|
201
201
|
- [@thi.ng/morton](https://github.com/thi-ng/umbrella/tree/develop/packages/morton) - Z-order curve / Morton encoding, decoding & range extraction for arbitrary dimensions
|
|
202
202
|
- [@thi.ng/rasterize](https://github.com/thi-ng/umbrella/tree/develop/packages/rasterize) - 2D shape drawing & rasterization
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/grid-iterators",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.13",
|
|
4
4
|
"description": "2D grid and shape iterators w/ multiple orderings",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -35,21 +35,21 @@
|
|
|
35
35
|
"test": "testament test"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@thi.ng/api": "^8.4.
|
|
39
|
-
"@thi.ng/arrays": "^2.3.
|
|
40
|
-
"@thi.ng/binary": "^3.3.
|
|
41
|
-
"@thi.ng/bitfield": "^2.2.
|
|
42
|
-
"@thi.ng/morton": "^3.1.
|
|
43
|
-
"@thi.ng/random": "^3.3.
|
|
44
|
-
"@thi.ng/transducers": "^8.3.
|
|
38
|
+
"@thi.ng/api": "^8.4.2",
|
|
39
|
+
"@thi.ng/arrays": "^2.3.6",
|
|
40
|
+
"@thi.ng/binary": "^3.3.5",
|
|
41
|
+
"@thi.ng/bitfield": "^2.2.6",
|
|
42
|
+
"@thi.ng/morton": "^3.1.14",
|
|
43
|
+
"@thi.ng/random": "^3.3.8",
|
|
44
|
+
"@thi.ng/transducers": "^8.3.14"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@microsoft/api-extractor": "^7.
|
|
48
|
-
"@thi.ng/testament": "^0.
|
|
47
|
+
"@microsoft/api-extractor": "^7.31.1",
|
|
48
|
+
"@thi.ng/testament": "^0.3.0",
|
|
49
49
|
"rimraf": "^3.0.2",
|
|
50
50
|
"tools": "^0.0.1",
|
|
51
51
|
"typedoc": "^0.22.17",
|
|
52
|
-
"typescript": "^4.
|
|
52
|
+
"typescript": "^4.8.3"
|
|
53
53
|
},
|
|
54
54
|
"keywords": [
|
|
55
55
|
"2d",
|
|
@@ -152,5 +152,5 @@
|
|
|
152
152
|
],
|
|
153
153
|
"year": 2019
|
|
154
154
|
},
|
|
155
|
-
"gitHead": "
|
|
155
|
+
"gitHead": "973139c5aa3b50081020f4cc726a7cc330f77fc7\n"
|
|
156
156
|
}
|