Simple program made in c++ and SFML that simulates the "Mandelbrot set", witch is a recursive function: f(z) = z^2 + c (c = x + y*i). The values that belong to the set are those that their recursive limit isn't infinity. Those points are drawn black, and the others get a color based on the rate that they escape to infinity.
- Move around WASD
- Esc to exit
- Zoom in/Out with + and -
- High precision
- Optimize (A lot!)
- Smooth colors (Linear interpolation)
- Add Julia set rendering
https://en.wikipedia.org/wiki/Mandelbrot_set
Use make. Latest version of -lSFML and GCC recommended.