https://github.com/mikeshultz/pixel-seed
Learning Rust by procedurally generating images from a given 32-byte seed
https://github.com/mikeshultz/pixel-seed
Last synced: 12 months ago
JSON representation
Learning Rust by procedurally generating images from a given 32-byte seed
- Host: GitHub
- URL: https://github.com/mikeshultz/pixel-seed
- Owner: mikeshultz
- Created: 2022-09-18T22:54:00.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-18T23:02:51.000Z (almost 4 years ago)
- Last Synced: 2025-06-05T23:03:44.890Z (about 1 year ago)
- Language: Rust
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pixel Seed
A fun little program that procedurally generates SVGs from a given 32-byte hex
string seed.
```bash
./pixel-seed 0x3950a1e52b4feb3de8d2b67edf0bd135c58c5a04fef43d6c6a3154321aeb712f
```
**NOTE**: As of this writing, this will drop an image at `./tmp/pixel_seed_test.svg`.
## Seed
This will probably be altered a bunch going forward.
```
Background RGBA Foreground RGBA
| | | |
0x3950a1e52b4feb3de8d2b67edf0bd135c58c5a04fef43d6c6a3154321aeb712f
| |
Seed for path generation ----------------------+
```