A small project to calculate and draw the mandelbrot set.
Let's consider the following function of complex numbers :
f[c]: x -> x^2 + c
The mandelbrot set is the set of complex numbers c for which iterating 0 over f[c] converges.
The goal of this project is to iterate this function over different values of c and draw the convergeant results using simple color coding.
Run the following :
npm install
source script/env.sh
bower install
python -m SimpleHTTPServer 1234
Then open http://localhost:1234