Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Cleanup.
authorArnaud Giersch <arnaud.giersch@free.fr>
Sun, 10 Nov 2013 17:23:59 +0000 (18:23 +0100)
committerArnaud Giersch <arnaud.giersch@free.fr>
Sun, 10 Nov 2013 17:23:59 +0000 (18:23 +0100)
mandel/mandel.cpp

index d8be8d0..955d888 100644 (file)
@@ -1,9 +1,6 @@
 #include <DrawingWindow.h>
 #include <QApplication>
 #include <iostream>
-#include <unistd.h>
-#include <sys/types.h>
-#include <sys/wait.h>
 
 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;