From 0619495498ec6305f23cf4f0635cfd46de866f31 Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 29 Aug 2019 11:36:21 +0200 Subject: Updated README with TODO list --- README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'README.md') diff --git a/README.md b/README.md index d32372b..e0108e4 100644 --- a/README.md +++ b/README.md @@ -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 -- cgit