diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-05-20 12:42:39 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-05-20 12:42:39 +0200 |
| commit | 5d6b59778a7346317ddfc549c350c0960a7a54a7 (patch) | |
| tree | 85d85e59ae8943ee486aebfe2b0760f0ee3a5b8e /README.md | |
| parent | b9915d27b0a21a97540d6ed193f338da3732e1a1 (diff) | |
| download | mandelbrot-5d6b59778a7346317ddfc549c350c0960a7a54a7.tar.gz mandelbrot-5d6b59778a7346317ddfc549c350c0960a7a54a7.tar.bz2 mandelbrot-5d6b59778a7346317ddfc549c350c0960a7a54a7.zip | |
Added Smoothness and super sampling
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 32 |
1 files changed, 10 insertions, 22 deletions
@@ -1,29 +1,17 @@ -# Mandelbrot set visualizer +# Mandelbrot visualizer -A visualizer for the [Mandelbrot Set](https://en.wikipedia.org/wiki/Mandelbrot_set). +A visualizer of 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` +``` +> make all +> ./mandel +``` -## TODO +## Dependencies -- [ ] Color gradient with control points and cubic iterpolation - like <https://stackoverflow.com/a/25816111> -- [ ] Smooth shading for out of set iteration colors. -- [ ] Draw to bmp image. -- [x] Create pixel array and update the render line by line. -- [ ] Display coordinates and other useful info. -- [x] Computation done in parallel. -- [x] Command line options -- [x] Anti-aliasing with supersampling -- [ ] Other (not random?) supersampling algorithm +- [SDL2](https://www.libsdl.org/) - window and OpenGL context +- [glew](http://glew.sourceforge.net/) - OpenGL implementation |
