aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-05-22 10:44:49 +0200
committerCharles <sircharlesaze@gmail.com>2020-05-22 10:44:49 +0200
commit6d4c3864e3b742a92e9874f1e4dfe3a9c1565188 (patch)
treea406e7f7d6bdc5210b2133762e39f7bdb396cfff /README.md
parentc9098d549d63b5fe18d8c95049ba13a5ae6e9eca (diff)
downloadmandelbrot_cpu-6d4c3864e3b742a92e9874f1e4dfe3a9c1565188.tar.gz
mandelbrot_cpu-6d4c3864e3b742a92e9874f1e4dfe3a9c1565188.tar.bz2
mandelbrot_cpu-6d4c3864e3b742a92e9874f1e4dfe3a9c1565188.zip
Added information (iterations, center, time)
Diffstat (limited to 'README.md')
-rw-r--r--README.md28
1 files changed, 7 insertions, 21 deletions
diff --git a/README.md b/README.md
index 0cae1d4..b92d9c9 100644
--- a/README.md
+++ b/README.md
@@ -1,29 +1,15 @@
-# Mandelbrot set visualizer
+# Mandelbrot set visualizer (CPU version)
-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).
+All computation are on the CPU compared to my [other mandelbrot visualizer](https://github.com/HappyTramp/mandel) where I use the GPU.
## 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
-
-- [ ] 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
+```
+make all
+./mandel
+```