From: Arnaud Giersch Date: Sun, 10 Nov 2013 17:23:59 +0000 (+0100) Subject: Cleanup. X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/graphlib.git/commitdiff_plain/49b1adec952c57fc84dceea41933b7a3cad97ec3?ds=sidebyside Cleanup. --- diff --git a/mandel/mandel.cpp b/mandel/mandel.cpp index d8be8d0..955d888 100644 --- a/mandel/mandel.cpp +++ b/mandel/mandel.cpp @@ -1,9 +1,6 @@ #include #include #include -#include -#include -#include struct parameters { // nombre max d'itérations @@ -56,13 +53,6 @@ static int check_point(parameters& p, double cr, double ci) return i; } -// int check_point(parameters& p, int x, int y) -// { -// double cr = p.Rmin + x * p.Rscale; -// double ci = p.Imax - y * p.Iscale; -// return check_point(p, cr, ci); -// } - static void set_color(DrawingWindow& w, parameters& p, int i) { double rouge, vert, bleu;