Skip to content

Skripkon/MandelbrotSet

Repository files navigation

Visualization of the Mandelbrot Set using C++ and SFML

My videos about fractals and this code: Part 1 & Part 2 (to be added)

Setup (Linux)

Install SFML (lib for graphics)

sudo apt-get install libsfml-dev

Compile

g++ main.cpp \
    Application.cpp \
    MandelbrotSet.cpp \
    -o mandelbrot \
    -lsfml-graphics \
    -lsfml-window \
    -lsfml-system \
    -pthread

Run

./mandelbrot

Demo (quality lost)

Width Height Maximum Number of Iterations Speed
600 450 100 1x

demo2

demo1

About

C++ GUI app

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages