Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv11582/src/net/sourceforge/bprocessor/gl/tool
Modified Files:
AbstractPencil.java
Log Message:
Grid drawing changed
Index: AbstractPencil.java
===================================================================
RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool/AbstractPencil.java,v
retrieving revision 1.108
retrieving revision 1.109
diff -C2 -d -r1.108 -r1.109
*** AbstractPencil.java 25 Jun 2009 22:17:40 -0000 1.108
--- AbstractPencil.java 9 Sep 2009 10:31:03 -0000 1.109
***************
*** 265,269 ****
}
}
! }
return intersection;
}
--- 265,272 ----
}
}
! }
!
! // Round off
! intersection.roundIt();
return intersection;
}
***************
*** 594,602 ****
if (cs.isEditable()) {
if (hooverConstructor != null) {
! hooverConstructor.showPlane(false);
}
if (!cs.showPlane()) {
hooverConstructor = (CoordinateSystem)p;
! hooverConstructor.showPlane(true);
}
}
--- 597,605 ----
if (cs.isEditable()) {
if (hooverConstructor != null) {
! //hooverConstructor.showPlane(false);
}
if (!cs.showPlane()) {
hooverConstructor = (CoordinateSystem)p;
! //hooverConstructor.showPlane(true);
}
}
***************
*** 810,814 ****
hooverEdge = null;
if (hooverConstructor != null) {
! hooverConstructor.showPlane(false);
}
hooverConstructor = null;
--- 813,817 ----
hooverEdge = null;
if (hooverConstructor != null) {
! //hooverConstructor.showPlane(false);
}
hooverConstructor = null;
|