Navigate the Mandelbrot Set using W, A, S and D!
Go to file
Rekai Musuka 99b4104261 chore: update README 2020-11-26 15:35:23 -06:00
.cargo feat: working interactive mandelbrot 2020-11-26 02:47:03 -06:00
src feat: add more colours to mandelbrot visualization 2020-11-26 14:39:48 -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: update README 2020-11-26 15:35:23 -06:00

README.md

Mandelbrot Set

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

How to Use

Due to Bevy, this program depends on lldb, llvm and Rust Nightly (as of 2020-11-26)

Once all these prerequisites have been satisfied, you can run cargo run --release in the project root directory.

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?