#mandelbrot #set #period #point #pixel #color #complex

app mandelbrot-orbits-rust

A console command to generate an image of the Mandelbrot Set where each pixel color represents the period of the complex point (if the point belongs to the Set)

1 unstable release

0.1.0 Dec 21, 2022

#922 in Development tools

MIT license

4MB
264 lines

Mandelbrot Orbits

Test MegaLinter

This is a small project to learn Rust.

It generates an image of the Mandelbrot Set where each pixel color represents the period of the complex point if the point belongs to the Set.

More info about Mandelbrot Set Periods.

For now, it's using a greyscale color scheme.

./docs/images/mandelbrot_2000x2000.png

Requirements

  • cargo: ^1.62.1.
  • rustc: ^1.62.1.

Use

git clone git@github.com:josecelano/mandelbrot-orbits-rust.git
cargo run ./output/mandelbrot_2048x2048.png 2048x2048 -2.0,2.00 2.0,-2.0

Development

Execute MegaLinter locally:

./bin/ml.sh

Run tests:

cargo test

More info for developers.

Math

You can find an explanation here.

And I'm trying to find and write a more formal explanation of the math behind the algorithm.

./docs/images/math.png

Credits

Repositories

Papers

Books

Wikibook

Demos

Other

Dependencies

~13–22MB
~118K SLoC