Nebulae

A multi-threaded Nebulabrot renderer.

An example render with default settings.

Building

Usage

Configuration

Configuration files can be provided as .toml files, using the following as a template: ```toml

Iteration multiplier for each of the red, green, and blue channels

Must be an array of three integers

limits = [ 7740, 2580, 860, ]

Number of random samples to take, per channel, per pass

samples = 1000000

Number of passes to run

passes = 100

Resolution of the rendered image (size × size pixels)

size = 2048

Colour correction curve to apply (value between 0 and 1, raised to this power)

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.

Subcommands

write-default

Simply prints the default configuration in TOML format.

wizard

Guides you through a simple configuration with some nice defaults.