Crates.io | mandelbrot-orbits-rust |
lib.rs | mandelbrot-orbits-rust |
version | 0.1.0 |
source | src |
created_at | 2022-12-21 10:41:58.304438 |
updated_at | 2022-12-21 10:41:58.304438 |
description | 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). |
homepage | |
repository | |
max_upload_size | |
id | 743053 |
size | 4,201,972 |
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.
cargo
: ^1.62.1
.rustc
: ^1.62.1
.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
Execute MegaLinter locally:
./bin/ml.sh
Run tests:
cargo test
You can find an explanation here.
And I'm trying to find and write a more formal explanation of the math behind the algorithm.