Navigate the Mandelbrot Set using W, A, S and D!
Go to file
Rekai Nyangadzayi Musuka 66d626e2f1 chore: update CI rust version from 1.49 to latest 2021-02-25 23:21:46 -06:00
src chore: change return type of Mandelbrot::generate_image() 2021-02-22 18:49:10 -06:00
.drone.yml chore: update CI rust version from 1.49 to latest 2021-02-25 23:21:46 -06:00
.gitignore feat: working interactive mandelbrot 2020-11-26 02:47:03 -06:00
Cargo.lock chore: remove image as a dependency 2020-11-26 13:19:58 -06:00
Cargo.toml chore: remove image as a dependency 2020-11-26 13:19:58 -06:00
README.md chore: add build status badge 2021-01-27 23:57:45 -06:00

README.md

Mandelbrot Set

Build Status An interactive interface where you can navigate the Mandelbrot Set.

Controls

W - Up
A - Left
S - Down
D - Right

Q Zoom Out
E Zoom In

Build Instructions

Due to my current configuration (which is one that prioritizes quick development), Bevy requires some dependencies in order to build this project. These dependencies are clang, lld, and llvm.

Also, this program requires Rust Nightly (as of 2020-11-26)

Once done, you can build the program with cargo build, or cargo build --release

Run Instructions

You can either execut the compiled binary, or use cargo and run cargo run --release

TODO

  • Make Zooming feel more natural (where you zoom to is fixed, and not centered)
  • Make the amount of iterations done when calculating the Mandelbrot set configurable
    • preferrably with a keybind
  • Add smooth colouring
    • Maybe look into histograms?