Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17584/src/net/sourceforge/bprocessor/gl/view
Modified Files:
View3D.java
Log Message:
Test of rotation using arrow keys in the pencil tool
Index: View3D.java
===================================================================
RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view/View3D.java,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** View3D.java 23 Nov 2005 19:04:59 -0000 1.22
--- View3D.java 24 Nov 2005 10:31:22 -0000 1.23
***************
*** 46,49 ****
--- 46,73 ----
/**
+ * Accessor for camera
+ * @return The camera
+ */
+ public double[] getCamera() {
+ return camera;
+ }
+
+ /**
+ * Acessor for roll
+ * @return The roll
+ */
+ public double[] getRoll() {
+ return roll;
+ }
+
+ /**
+ * Accessor for center
+ * @return The center
+ */
+ public double[] getCenter() {
+ return center;
+ }
+
+ /**
* The camera setup function
* @param gld The GLDrawable object
|