Update of /cvsroot/bprocessor//gl/src/net/sourceforge/bprocessor/gl/tool
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv18744/src/net/sourceforge/bprocessor/gl/tool
Modified Files:
EdgeMoveTool.java AbstractPencil.java AltMoveTool.java
Log Message:
Renamed onlyPlane to showPlane
Index: EdgeMoveTool.java
===================================================================
RCS file: /cvsroot/bprocessor//gl/src/net/sourceforge/bprocessor/gl/tool/EdgeMoveTool.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** EdgeMoveTool.java 13 Dec 2007 12:00:49 -0000 1.8
--- EdgeMoveTool.java 30 Dec 2007 23:29:10 -0000 1.9
***************
*** 158,162 ****
if (!coordMap.containsKey(surface)) {
CoordinateSystem system = surface.coordinateSystem();
! system.onlyPlane(false);
system.setActive(true);
coordMap.put(surface, system);
--- 158,162 ----
if (!coordMap.containsKey(surface)) {
CoordinateSystem system = surface.coordinateSystem();
! system.showPlane(false);
system.setActive(true);
coordMap.put(surface, system);
Index: AltMoveTool.java
===================================================================
RCS file: /cvsroot/bprocessor//gl/src/net/sourceforge/bprocessor/gl/tool/AltMoveTool.java,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** AltMoveTool.java 13 Dec 2007 12:00:49 -0000 1.17
--- AltMoveTool.java 30 Dec 2007 23:29:10 -0000 1.18
***************
*** 120,124 ****
if (system == null) {
system = surface.coordinateSystem();
! system.onlyPlane(true);
system.setActive(true);
}
--- 120,124 ----
if (system == null) {
system = surface.coordinateSystem();
! system.showPlane(true);
system.setActive(true);
}
Index: AbstractPencil.java
===================================================================
RCS file: /cvsroot/bprocessor//gl/src/net/sourceforge/bprocessor/gl/tool/AbstractPencil.java,v
retrieving revision 1.105
retrieving revision 1.106
diff -C2 -d -r1.105 -r1.106
*** AbstractPencil.java 30 Dec 2007 23:24:32 -0000 1.105
--- AbstractPencil.java 30 Dec 2007 23:29:10 -0000 1.106
***************
*** 602,610 ****
if (cs.isEditable()) {
if (hooverConstructor != null) {
! hooverConstructor.onlyPlane(false);
}
! if (!cs.onlyPlane()) {
hooverConstructor = (CoordinateSystem)p;
! hooverConstructor.onlyPlane(true);
}
}
--- 602,610 ----
if (cs.isEditable()) {
if (hooverConstructor != null) {
! hooverConstructor.showPlane(false);
}
! if (!cs.showPlane()) {
hooverConstructor = (CoordinateSystem)p;
! hooverConstructor.showPlane(true);
}
}
***************
*** 818,822 ****
hooverEdge = null;
if (hooverConstructor != null) {
! hooverConstructor.onlyPlane(false);
}
hooverConstructor = null;
--- 818,822 ----
hooverEdge = null;
if (hooverConstructor != null) {
! hooverConstructor.showPlane(false);
}
hooverConstructor = null;
|