A multi-threaded Nebulabrot renderer.
cargo build --release
nebulae
will be placed in target/release
On the command line, with nebulae
available in your $PATH
:
nebulae
-c, --config <CONFIG>
option:
sh
nebulae -o my_render.png
To get help, run nebulae help
It should print the following:
USAGE: nebulae [OPTIONS] [SUBCOMMAND]
OPTIONS:
-c, --config
SUBCOMMANDS: help Print this message or the help of the given subcommand(s) wizard Display configuration wizard write-default Write the default configuration to TOML
Configuration files can be provided as .toml
files, using the following as a template:
```toml
limits = [ 7740, 2580, 860, ]
samples = 1000000
passes = 100
size = 2048
curve = 0.5 ```
To pass use a configuration file, use the -c, --config <CONFIG>
option:
sh
nebulae -c my_config.toml
To output a configuration file (with wizard
and write-default
subcommands), use the -c, --config <CONFIG>
" option:
sh
nebulae wizard -s new_config.toml
To speed up total rendering time, you can choose not to output an image after each pass with the -n, --no-intermediates
flag.
write-default
Simply prints the default configuration in TOML format.
wizard
Guides you through a simple configuration with some nice defaults.