Mandelbrot Set
I saw these on youtube and wondered how they were made; and decided to implement one for my Computer Graphics class.
Here’s the github repo.
Find the interactive version at mandelbrot.
So, what is a Mandelbrot set?
A set defined in the complex plane for which the functionf(z) = z^2 + c
which does not diverge to infinity, when iterated starting from z = 0.

To be continued…