A rust package that plots the Mandelbrot set (or a customizable slide of it) as cartesian coordinates on the complex plane.
Rust
cargo build --release
target/release/mandelbrot {filename} {dimensions} {upper_left_bound} {lower_right_bound}Note: I typically run this with
timeto get an understanding of the performance.
time target/release/mandelbrot mandel.png 4000x3000 -1.20,0.35 -1,0.20Based on knowledge from Programming Rust v2
