Update of /cvsroot/fudaa/fudaa_devel/ebli/src/org/fudaa/ebli/geometrie
In directory sc8-pr-cvs1:/tmp/cvs-serv930/geometrie
Modified Files:
GrPoint.java
Log Message:
ZCalqueLongPolygone : permet de dessiner des polygones qui seraient long.
EnhancedDialog dialogue pouvant etre ferme avec la touche esc
Index: GrPoint.java
===================================================================
RCS file: /cvsroot/fudaa/fudaa_devel/ebli/src/org/fudaa/ebli/geometrie/GrPoint.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** GrPoint.java 18 Mar 2003 16:14:15 -0000 1.2
--- GrPoint.java 4 Jul 2003 14:32:48 -0000 1.3
***************
*** 28,31 ****
--- 28,36 ----
{
}
+
+ public GrPoint(GrPoint _p)
+ {
+ initialise(_p);
+ }
public GrPoint(double _x, double _y, double _z)
***************
*** 41,44 ****
--- 46,54 ----
if (_c.length>1) y=_c[1];
if (_c.length>2) z=_c[2];
+ }
+
+ public final void initialise(GrPoint _p)
+ {
+ x=_p.x;y=_p.y;z=_p.z;
}
|