2020-11-26 19:05:18 +00:00
|
|
|
# Mandelbrot Set
|
|
|
|
An interactive interface where you can navigate the Mandelbrot Set.
|
|
|
|
|
|
|
|
### Controls
|
|
|
|
<kbd>W</kbd> - Up
|
|
|
|
<br />
|
|
|
|
<kbd>A</kbd> - Left
|
|
|
|
<br />
|
|
|
|
<kbd>S</kbd> - Down
|
|
|
|
<br />
|
|
|
|
<kbd>D</kbd> - Right
|
|
|
|
|
|
|
|
<kbd>Q</kbd> Zoom Out
|
|
|
|
<br />
|
|
|
|
<kbd>E</kbd> Zoom In
|
|
|
|
|
2020-11-26 19:07:04 +00:00
|
|
|
|
|
|
|
### How to Use
|
|
|
|
With `cargo`, in the root directory run `cargo run --release`
|
|
|
|
|
2020-11-26 19:05:18 +00:00
|
|
|
### 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 colour to the program
|
2020-11-26 19:07:04 +00:00
|
|
|
* Black + White is kinda boring yeah?
|