diff --git a/mandelbrot.c b/mandelbrot.c index 7f80424f115873b78ff558a379c11668024e7a59..cdab641c22b60c9942373e2148a7ae45e71bbb9e 100644 --- a/mandelbrot.c +++ b/mandelbrot.c @@ -16,8 +16,8 @@ int main() { /* screen ( integer) coordinate */ int iX,iY; - const int iXmax = 800; - const int iYmax = 800; + const int iXmax = 1500; + const int iYmax = 1500; /* world ( double) coordinate = parameter plane*/ double Cx,Cy; const double CxMin=-2.5;