gpt4 book ai didi

c++ - Mandelbrot 集未显示在中心

转载 作者:行者123 更新时间:2023-11-30 05:12:32 24 4
gpt4 key购买 nike

我认为问题在于我如何将笛卡尔坐标转换为复数,但我现在知道如何操作了。你能解释一下我应该如何转换吗?这是我尝试过的:

double c_Im = (y + (maxIm - minIm)) / height;
double c_Re = (x + (maxRe - minRe)) / width;

代码:

float minRe = -2.0;
float maxRe = 2.0;
double minIm = -2.0;
double maxIm = 2.0;

for (size_t y = 0; y < height; y++)
{
double c_Im = (y + (maxIm - minIm)) / height;

for (size_t x = 0; x < width; x++)
{
double c_Re = (x + (maxRe - minRe)) / width;
float dx = 0, dy = 0;
int z = 0;
while (dx * dx + dy * dy < 4 && z < maxIterator)
{
float temp = (dx * dx - dy * dy) + c_Re;
dy = 2 * dx * dy + c_Im;
dx = temp;
z++;
}
image.setPixel(x, y, Color(z % 255, z % 255, z % 255));

}
}

not_expected_output.jpg not expected output

最佳答案

我认为您正在寻找的公式是这样的:

double c_Im = y * (maxIm - minIm)/height + minIm;

double c_Re = x * (maxRe - minRe)/width + minRe;

这是从 map 公式推导出来的:Y=(X-A)*(D-C)/(B-A)+C

关于c++ - Mandelbrot 集未显示在中心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44479635/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com