diff options
| author | Charles <sircharlesaze@gmail.com> | 2019-08-29 11:36:21 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2019-08-29 11:36:21 +0200 |
| commit | 0619495498ec6305f23cf4f0635cfd46de866f31 (patch) | |
| tree | 14ed0ef7bb32cf7d0686bb3cea9ad7c6185c0305 /README.md | |
| parent | f85dda2684d7f75c77e3a78282dae89bc1f5a113 (diff) | |
| download | mandelbrot-0619495498ec6305f23cf4f0635cfd46de866f31.tar.gz mandelbrot-0619495498ec6305f23cf4f0635cfd46de866f31.tar.bz2 mandelbrot-0619495498ec6305f23cf4f0635cfd46de866f31.zip | |
Updated README with TODO list
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -1 +1,26 @@ # Mandelbrot set visualizer + +A visualizer for the [Mandelbrot Set](https://en.wikipedia.org/wiki/Mandelbrot_set). + +## Dependencies + +- [SDL2](https://www.libsdl.org/) for the graphics + +## Install + +SDL2: `sudo apt install libsdl2-dev` + +## Usage + +1. compile: `make all` +2. run: `./mandel` + +## TODO + +- [ ] Create color spectrum. +- [ ] Smooth shading for out of set iteration colors. +- [ ] Draw to bmp image. +- [ ] Create pixel array and update the render line by line. +- [ ] Display coordinates and other useful info. +- [ ] Computation done in parallel. +- [ ] Command line options |
