Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18470/src/net/sourceforge/bprocessor/gl/view
Modified Files:
View.java
Log Message:
made small fixes and improvements to the camera tool and added a flytool
Index: View.java
===================================================================
RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view/View.java,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -d -r1.29 -r1.30
*** View.java 12 Dec 2005 20:19:53 -0000 1.29
--- View.java 14 Dec 2005 14:20:35 -0000 1.30
***************
*** 419,423 ****
}
! camera(gld);
gl.glPushMatrix();
picking = 0;
--- 419,423 ----
}
! initCamera(gld);
gl.glPushMatrix();
picking = 0;
***************
*** 1733,1737 ****
*/
public List getObjectAtPoint(double x, double y) {
- int id;
this.x = x;
this.y = y;
--- 1733,1736 ----
***************
*** 2011,2015 ****
* @param gld The GLDrawable object
*/
! public void camera(GLDrawable gld) {
if (log.isDebugEnabled()) {
log.debug("[display]");
--- 2010,2014 ----
* @param gld The GLDrawable object
*/
! public void initCamera(GLDrawable gld) {
if (log.isDebugEnabled()) {
log.debug("[display]");
|