https://github.com/htrefil/multiman
A parallel fractal renderer.
https://github.com/htrefil/multiman
Last synced: about 1 year ago
JSON representation
A parallel fractal renderer.
- Host: GitHub
- URL: https://github.com/htrefil/multiman
- Owner: htrefil
- Created: 2019-12-28T17:12:21.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-01-30T17:18:03.000Z (over 4 years ago)
- Last Synced: 2023-03-06T00:34:46.513Z (over 3 years ago)
- Language: Rust
- Size: 685 KB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# multiman
A parallel Mandelbrot and Julia set-style fractal renderer supporting custom user expressions.
It leverages all available CPU cores to render images in parallel.
## Usage
```
multiman 0.1.0
USAGE:
multiman
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
ARGS:
Initialization expression
Iteration expression
Width of the image
Height of the image
Path of the resulting image
```
## Examples
```
multiman "(X / WIDTH * 2 - 1) + (Y / HEIGHT * 2 - 1.0) * i" "Z * Z + (0.1 + 0.65i)" 500 500 examples/1.png
```

```
multiman "0i" "Z * Z + (X * 2 / WIDTH - 1.5 + (Y * 2 / HEIGHT - 1) * i)" 500 500 examples/2.png
```
