From 3539a5bd7b50231f0db07b62d48725233ef96369 Mon Sep 17 00:00:00 2001 From: TruncatedDodecahedron Date: Sun, 12 Oct 2025 12:46:42 +0800 Subject: [PATCH] Update Main.cpp what about burning and mandelbrot is power 3? --- Main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Main.cpp b/Main.cpp index c453cfe..7c31978 100644 --- a/Main.cpp +++ b/Main.cpp @@ -61,13 +61,13 @@ void PtToScreen(double px, double py, int& x, int& y) { //All fractal equations void mandelbrot(double& x, double& y, double cx, double cy) { double nx = x*x - y*y + cx; - double ny = 2.0*x*y + cy; + double ny = 3.0*x*y + cy; x = nx; y = ny; } void burning_ship(double& x, double& y, double cx, double cy) { double nx = x*x - y*y + cx; - double ny = 2.0*std::abs(x*y) + cy; + double ny = 3.0*std::abs(x*y) + cy; x = nx; y = ny; } @@ -574,7 +574,7 @@ int main(int argc, char *argv[]) { " 2 - Burning Ship\n" " 3 - Feather Fractal\n" " 4 - SFX Fractal\n" - " 5 - Hénon Map\n" + " 5 - Hénon Map\n" " 6 - Duffing Map\n" " 7 - Ikeda Map\n" " 8 - Chirikov Map\n"