/CMP202_Mandelbrot

C++ Mandelbrot Implementation

Primary LanguageC++

CMP202_Mandelbrot

Callum (Waves)

Feb 2022

My reimplementation of the mandelbrot code provided by lecturers of CMP202.

To be done

  1. Change from black and white image to colour.
  2. Implement threading.
  3. Performance optimisation.
  4. Figure out sdl2 to show mandelbrot generation as it happens.
  5. Improve threading (thread pools etc)

Improvements

  1. Less nested looping, Treat a 1D array as if it was 2D.
  2. Allow user to specify custom resolution.
  3. Better file structuring (split into main.cpp, mandelbrot.[c/h]pp)