I'm trying to zoom into my mandelbrot and I read this question: How to perform Simple Zoom into Mandelbrot Set but I have difficult to understand it and it doesn't work. When I calculate the new real and complex number like so:
double Re_factor = (MaxRe-MinRe)/(ImageWidth-1); double Im_factor = (MaxIm-MinIm)/(ImageHeight-1); double newMinRe = MinRe + (Re_factor* x1); double newMaxRe = MinRe + (Re_factor* x2); double newMinIm = MinIm + (Im_factor* y1); double newMaxIm = MinIm + (Im_factor* y2);
the new mandelbrot is a bit distorted in both axis? What is wrong? Here is an example: http://www.phpdevpad.de/index.php?id=190.