A program to plot a Mandelbrot set, a fractal produced by iterating a simple function on complex numbers.
To run or compile the code, you'll need to have Rust installed.
Check here Rust - Get Started for help on how to set up a Rust development enviroment.
cargo run <file-name> <dimensions> <upper_left_bound> <lower_right_bounds>
Example:
target/release/mandelbrot mandel.png 4000x3000 -1.20,0.35 -1,0.20
For an example of the resulting image, check the mandel.png file.