Skip to content

Latest commit

 

History

History
36 lines (19 loc) · 739 Bytes

README.md

File metadata and controls

36 lines (19 loc) · 739 Bytes

Logo

Mandelbrot Plotter

A rust package that plots the Mandelbrot set (or a customizable slide of it) as cartesian coordinates on the complex plane.

Authors

Tech Stack

Rust

To Run

cargo build --release
target/release/mandelbrot {filename} {dimensions} {upper_left_bound} {lower_right_bound}

Example

Note: I typically run this with time to get an understanding of the performance.

time target/release/mandelbrot mandel.png 4000x3000 -1.20,0.35 -1,0.20

Acknowledgements

Based on knowledge from Programming Rust v2