[Javacad-develop] (no subject)
Status: Pre-Alpha
Brought to you by:
bachg
From: Scott P. <std...@ho...> - 2004-03-14 06:52:49
|
Is there still any JCad development going on? I noticed that the HEAD version in CVS does not compile. To fix the = problem I simply added a "boolean click" argument to the updateGUI() = method in the JCadDrawCircle3PAction class. (patch below, but not = necessary) Index: org/jcad/JCad/action/JCadDrawCircle3PAction.java =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: = /cvsroot/javacad/JCad/org/jcad/JCad/action/JCadDrawCircle3PAction.java,v retrieving revision 1.4 diff -u -r1.4 JCadDrawCircle3PAction.java --- org/jcad/JCad/action/JCadDrawCircle3PAction.java 20 Jul 2001 = 17:35:02 -0000 1.4 +++ org/jcad/JCad/action/JCadDrawCircle3PAction.java 14 Mar 2004 = 06:38:30 -0000 @@ -42,7 +42,7 @@ return 3; } =20 - public void updateGUI () + public void updateGUI (boolean click) { //System.out.println("Current point: "+pointCount+" = "+points[pointCount]); =20 Regards, Scott Pontillo |