An open API service indexing awesome lists of open source software.

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.

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
```
![1](examples/1.png)

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