|
From: <de...@us...> - 2003-12-11 12:50:58
|
Update of /cvsroot/fudaa/fudaa_devel/fudaa/src/org/fudaa/fudaa/seuil
In directory sc8-pr-cvs1:/tmp/cvs-serv25368/seuil
Modified Files:
SeuilGraphe.java SeuilGrapheGeom.java
Log Message:
Modification du prepro tr.
Ajout tail follow
Modifation ebli/graphe/courbe
Index: SeuilGraphe.java
===================================================================
RCS file: /cvsroot/fudaa/fudaa_devel/fudaa/src/org/fudaa/fudaa/seuil/SeuilGraphe.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** SeuilGraphe.java 25 Nov 2003 10:14:18 -0000 1.6
--- SeuilGraphe.java 11 Dec 2003 12:50:55 -0000 1.7
***************
*** 110,116 ****
} // fin constructeur
public void traceGraphe() {
! Courbe courbe_;
for (int ic= 0; ic < nc; ic++) {
! courbe_= new Courbe();
Aspect asp= new Aspect();
asp.contour= aspcont[ic];
--- 110,116 ----
} // fin constructeur
public void traceGraphe() {
! CourbeDefault courbe_;
for (int ic= 0; ic < nc; ic++) {
! courbe_= new CourbeDefault();
Aspect asp= new Aspect();
asp.contour= aspcont[ic];
***************
*** 135,139 ****
}
for (int ic= 0; ic < nlib; ic++) {
! courbe_= new Courbe();
Aspect asp= new Aspect();
asp.contour= asplib[ic];
--- 135,139 ----
}
for (int ic= 0; ic < nlib; ic++) {
! courbe_= new CourbeDefault();
Aspect asp= new Aspect();
asp.contour= asplib[ic];
Index: SeuilGrapheGeom.java
===================================================================
RCS file: /cvsroot/fudaa/fudaa_devel/fudaa/src/org/fudaa/fudaa/seuil/SeuilGrapheGeom.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** SeuilGrapheGeom.java 25 Nov 2003 10:14:18 -0000 1.5
--- SeuilGrapheGeom.java 11 Dec 2003 12:50:55 -0000 1.6
***************
*** 30,34 ****
private Graphe graphe_;
private Axe axeX;
! private Courbe courbe_;
private Color[] col=
{ Color.black, Color.blue, Color.green, Color.orange, Color.pink };
--- 30,34 ----
private Graphe graphe_;
private Axe axeX;
! private CourbeDefault courbe_;
private Color[] col=
{ Color.black, Color.blue, Color.green, Color.orange, Color.pink };
***************
*** 127,131 ****
double[] vals= new double[valeurs_.length];
Axe axe= new Axe();
! courbe_= new Courbe();
/*
if(u < 3)
--- 127,131 ----
double[] vals= new double[valeurs_.length];
Axe axe= new Axe();
! courbe_= new CourbeDefault();
/*
if(u < 3)
|