From 5d6b59778a7346317ddfc549c350c0960a7a54a7 Mon Sep 17 00:00:00 2001 From: Charles Date: Wed, 20 May 2020 12:42:39 +0200 Subject: Added Smoothness and super sampling --- README.md | 32 ++++++++++---------------------- 1 file changed, 10 insertions(+), 22 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 0cae1d4..9e7ea36 100644 --- a/README.md +++ b/README.md @@ -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` +![screenshot](./screenshot.png) ## Usage -1. compile: `make all` -2. run: `./mandel` +``` +> make all +> ./mandel +``` -## TODO +## Dependencies -- [ ] Color gradient with control points and cubic iterpolation - like -- [ ] 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 -- cgit