blob: b92d9c9cf2f3500eaf7ab6f072ecd55de01aadee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Mandelbrot set visualizer (CPU version)
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
## Usage
```
make all
./mandel
```
|