diff --git a/Mandelbrot.py b/Mandelbrot.py index 3fd3f1e..16eb106 100644 --- a/Mandelbrot.py +++ b/Mandelbrot.py @@ -8,8 +8,9 @@ def mandelbrot (c, max_iter): z = z*z + c return max_iter -width = 800 -height = 600 +width = 600 +height = 800 + img = Image.new('RGB', (width, height)) # die komplexe Ebene definieren @@ -23,3 +24,4 @@ for x in range(width): c = complex(real, imag) print ("x-> ", x, " y-> ", y, " -> ",c) +