diff --git a/C++/Mandelbrot explorer/main.cpp b/C++/Mandelbrot explorer/main.cpp index aab5a09..86499a6 100644 --- a/C++/Mandelbrot explorer/main.cpp +++ b/C++/Mandelbrot explorer/main.cpp @@ -34,7 +34,11 @@ public: iteration++; } long double ratio = (long double)iteration - std::log2(std::log2(Zre*Zre + Zim*Zim)) / m_maxIterations; +<<<<<<< HEAD olc::Pixel colour = olc::Pixel(ratio + 255.0f, ratio + 255.0f, ratio + 255.0f); +======= + olc::Pixel colour = olc::Pixel(ratio, ratio, ratio); +>>>>>>> 447c0c7a41568e3993820342ea06d7b95d1fe18c DrawRect(pX, pY, 1, 1, colour); } } diff --git a/C++/Mandelbrot explorer/out.exe b/C++/Mandelbrot explorer/out.exe index 1c11f43..bf54786 100644 Binary files a/C++/Mandelbrot explorer/out.exe and b/C++/Mandelbrot explorer/out.exe differ