Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16342
Modified Files:
View.java
Log Message:
Changed getObjectAtPoint to return an object
Index: View.java
===================================================================
RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view/View.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** View.java 17 Aug 2005 09:00:17 -0000 1.4
--- View.java 17 Aug 2005 10:56:15 -0000 1.5
***************
*** 126,131 ****
* @param x the x coordinate of the point
* @param y the y coordinate of the point
! * @return a Long id of the object under the point, null if no object is there
*/
! public Long getObjectAtPoint(double x, double y);
}
--- 126,131 ----
* @param x the x coordinate of the point
* @param y the y coordinate of the point
! * @return The object under the point, null if no object is there.
*/
! public Object getObjectAtPoint(double x, double y);
}
|