Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv15574/src/net/sourceforge/bprocessor/gl/view
Modified Files:
View.java
Log Message:
Removed unused code
Index: View.java
===================================================================
RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view/View.java,v
retrieving revision 1.132
retrieving revision 1.133
diff -C2 -d -r1.132 -r1.133
*** View.java 10 Aug 2006 09:59:56 -0000 1.132
--- View.java 10 Aug 2006 10:10:49 -0000 1.133
***************
*** 2495,2522 ****
return selection;
}
-
- /**
- * Gets id of any Vertices under a point. For use in selection.
- * @param x the x coordinate of the point in mouse coordinates
- * @param y the y coordinate of the point in mouse coordinates
- * @return The object under the point, null if no object is there
- */
- public List getVertexAtPoint(double x, double y) {
- this.x = x;
- this.y = y;
-
- picking = 10;
- selectMode = VERTICES;
- glv.repaint(true);
-
- List selection = new LinkedList();
- Object object = processSelect(new HashSet(), false, new Plane(0, 0, 1, 0));
- if (object != null) {
- selection.add(object);
- }
- clearNames();
- return selection;
- }
-
/**
--- 2495,2498 ----
|