Hi,
I've been pretty interested in coding a Mandelbrot Set zoom and have already done it twice. However there were problems with each one.
The first time I thought it'd be cool to do it in javascript... but that was so damn slow. Then I did it in C++, which worked great until you zoomed so far that the units on the graph got to the smallest point of C++'s double precision, so it just became pixelated.
So I'm looking for a language that'll be able to handle extremely precise floating point numbers and is also extremely fast at drawing graphics (which require huge loops for each pixel, each frame).
That is unless somebody can provide a solution to the C++ doubles?
Remember this is a zoom. So it doesn't just render static parts of the Mandelbrot Set, but keeps zooming in on parts.
Any suggestions?
Thanks a lot.