0

我正在尝试放大我的 mandelbrot 并且我阅读了这个问题:How to perform Simple Zoom into Mandelbrot Set但我很难理解它并且它不起作用。当我像这样计算新的实数和复数时:

双 Re_factor = (MaxRe-MinRe)/(ImageWidth-1);
双 Im_factor = (MaxIm-MinIm)/(ImageHeight-1);

双 newMinRe = MinRe + (Re_factor* x1);
双 newMaxRe = MinRe + (Re_factor* x2);
双 newMinIm = MinIm + (Im_factor* y1);
双 newMaxIm = MinIm + (Im_factor* y2);

新的 mandelbrot 在两个轴上都有点扭曲?怎么了?这是一个示例:http ://www.phpdevpad.de/index.php?id=190 。

4

1 回答 1

0

显示区域失真(y 轴不够大)。你的方程很好。

于 2012-11-30T13:29:52.803 回答