A hybrid C program that generates a bmp image of the mandelbrot set
The program is meant for compilation on Linux systems.
To compile follow the steps below:
- make a new build directory
mkdir build
- change directories to the newly created build directory
cd build/
- run cmake
cmake ../src/
make
To run the program you must specify the width of the outputted image and it's name:
./main 1024 output.bmp
Width is specified in pixels and should be divisible by 4.