It works!!!!!!

This commit is contained in:
2026-01-30 17:59:16 +01:00
parent d262924e20
commit 6fbb53ccd1
7 changed files with 830 additions and 0 deletions

11
include/constants.hpp Normal file
View File

@@ -0,0 +1,11 @@
#pragma once
namespace Constants {
constexpr int maxIterations{2000};
constexpr int windowWidth{600};
constexpr int windowHeight{600};
constexpr double posRealRange{3.0};
constexpr double negRealRange{-3.0};
constexpr double posImagRange{3.0};
constexpr double negImagRange{-3.0};
} // Namespace Constants

3
include/mandelbrot.hpp Normal file
View File

@@ -0,0 +1,3 @@
#pragma once
int calculateMandelbrot(double cReal, double cImag);