From 5f1a11def3161b9089342824ff8b4d02df7cf2dc Mon Sep 17 00:00:00 2001 From: ln803631 Date: Wed, 9 Oct 2019 11:01:45 +0200 Subject: [PATCH] Modification de l'encodage du fichier vers l'UTF-8 --- NGCC/src/lecturePdf/Recadrage.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/NGCC/src/lecturePdf/Recadrage.java b/NGCC/src/lecturePdf/Recadrage.java index 0ac0dba..87d492b 100644 --- a/NGCC/src/lecturePdf/Recadrage.java +++ b/NGCC/src/lecturePdf/Recadrage.java @@ -120,7 +120,7 @@ public class Recadrage { roar2[0]=roar[0]; for (int l=0;l5 ou y-(y-1)>5 - roar2[tmp][0]=roar[l][0]; //efface le precedent roar2 si il était a 1 pixel de diff + roar2[tmp][0]=roar[l][0]; //efface le precedent roar2 si il était a 1 pixel de diff roar2[tmp][1]=roar[l][1]; } else { @@ -175,7 +175,7 @@ public class Recadrage { int diffy= Math.abs(lastRoar[l][1]-points[li][1]); boolean testx= diffx>img.getWidth()*0.85 || diffx0.8 x la largeur de feuille boolean testy= diffy>img.getHeight()*0.8 || diffyimg.getWidth()*0.2; //si point deja présent + boolean Repeat= diffx+diffy>img.getWidth()*0.2; //si point deja présent if (!Repeat || (!testx || !testy) ) // si 0.2>diffx>0.8 ou "diffy" et { @@ -207,9 +207,9 @@ public class Recadrage { public boolean checkCircle(int x,int y,int radius) { double pi=Math.PI; //3.14 Color tmp; - for (double k=-1;k<=1;k+=0.05) { // de 0 à 2 pi - int px=x+(int)Math.round(radius*Math.cos(k*pi)); //px = pos x du contour du supposé cercle - int py=y+(int)Math.round(radius*Math.sin(k*pi)); //diam calculé +/- 42 pixels + for (double k=-1;k<=1;k+=0.05) { // de 0 à 2 pi + int px=x+(int)Math.round(radius*Math.cos(k*pi)); //px = pos x du contour du supposé cercle + int py=y+(int)Math.round(radius*Math.sin(k*pi)); //diam calculé +/- 42 pixels if(py<0)py=0; if(py>img.getHeight())py=img.getHeight()-1; if(px<0)px=0; @@ -261,7 +261,7 @@ public class Recadrage { System.out.println("dadj "+dadj + " dhypo "+dhypo); - if (dhypo90/2) retour=180-90-retour; @@ -384,7 +384,7 @@ public class Recadrage { int x=5,y=5,radius=2; double pi= Math.PI; double k=-0.75; //k=0 = droit du cercle - int px=x+(int)Math.round(radius*Math.cos(k*pi)); //px = pos x du contour du supposé cercle + int px=x+(int)Math.round(radius*Math.cos(k*pi)); //px = pos x du contour du supposé cercle int py=y+(int)Math.round(radius*Math.sin(k*pi)); //System.out.println("x : "+px+" y: "+py); */