From 734ef434c289abdcb7771989fcc73f12c95f5a63 Mon Sep 17 00:00:00 2001 From: JNDTUHH Date: Tue, 16 Jan 2018 20:22:04 +0100 Subject: Streukacke gefixt --- src/sets.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/sets.c') diff --git a/src/sets.c b/src/sets.c index 6787a6e..eb09e6a 100644 --- a/src/sets.c +++ b/src/sets.c @@ -28,7 +28,7 @@ u32 mandelbrot_r(double x, double y, u32 iterations) u32 _mandelbrot_r(double x, double y, double zx, double zy, u32 n, u32 iterations, double threshold) { - if ((n <= iterations) && ((zx * zx + zy * zy) < threshold)) { + if ((n < iterations) && ((zx * zx + zy * zy) < threshold)) { double zx_new = (zx * zx - zy * zy + x); double zy_new = (2 * zx * zy + y); if ((zx_new == zx) && (zy_new == zy)) { -- cgit v1.2.1