https://github.com/inozpavel/rust_mandelbrot
Rust mandelbrot fractal draw cli tool
https://github.com/inozpavel/rust_mandelbrot
Last synced: 2 months ago
JSON representation
Rust mandelbrot fractal draw cli tool
- Host: GitHub
- URL: https://github.com/inozpavel/rust_mandelbrot
- Owner: Inozpavel
- License: mit
- Created: 2024-02-26T17:27:35.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-07-14T19:00:16.000Z (11 months ago)
- Last Synced: 2025-02-11T14:48:32.665Z (4 months ago)
- Language: Rust
- Homepage:
- Size: 4.79 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# How to use
```bash
Usage: mandelbrot.exe [OPTIONS] [HEIGHT] [WIDTH]Arguments:
[HEIGHT] image height [default: 1920]
[WIDTH] image width [default: 1080]Options:
--num-threads Num threads to speed up computation. Default to std::thread::available_parallelism()
--upper-left Upper left complex point for computation # Example --upper-left='-1.2+0.35i' [default: -1.6+0.05i]
--lower-right Lower right complex point for computation # Example --lower-right='-1+0.2i' [default: -1.8-0.05i]
-h, --help Print help
```Example output:
