No description, website, or topics provided.
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
src
.gitignore
Cargo.lock
Cargo.toml
README.md
screen.jpg

README.md

Mandelbrot

As the name suggests this application draws a Mandelbrot fractal. This means it interprets each position of a pixel as a complex number c and a assigns the pixel a color depending on how fast the sequence z(n + 1) = z(n) * z(n) + c diverges. The application utilizes the GPU through OpenGL and should run reasonably fast.

Build

This Application is written in Rust. So to build it you will need cargo. If you do not have cargo installed yet, you can get it here.

If you have cargo installed, just check this repository out and run:

cargo run --release

To see a Mandelbrot fractal.

Screenshot of Mandelbrot fractal