From 05c243c73b7032f3181b37de719bbeac3bf7fb31 Mon Sep 17 00:00:00 2001 From: Will Morris <williamdunstanmorris@gmail.com> Date: Sun, 9 Dec 2018 16:36:24 +0000 Subject: [PATCH] Modified XMin and YMin on the axis for testing --- mandelbrot.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mandelbrot.c b/mandelbrot.c index e473255..cb5eff6 100644 --- a/mandelbrot.c +++ b/mandelbrot.c @@ -16,8 +16,8 @@ int main() { /* screen ( integer) coordinate */ int iX,iY; - const int iXmax = 2000; - const int iYmax = 2000; + const int iXmax = 3000; + const int iYmax = 3000; /* world ( double) coordinate = parameter plane*/ double Cx,Cy; const double CxMin=-2.5; -- GitLab