Browser does not support HTML5 Canvas, please use a more modern browser

Mandelbrot Set is a fractal representing the equation

Z+1 = Z^2 + C

Testing whether numbers are either convergent or divergent on this equation creates us a visualization of the Mandelbrot Set. If a number fits within a fixed boundary after a number of iterations, it is part of the Mandelbrot set. If it diverges, however, it is not.

This program will color each pixel slowly generating a Mandelbrot set. It divides the screen space until all pixels are fully colored.