diff options
author | don bright <hugh.m.bright@gmail.com> | 2013-02-21 12:31:18 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2013-02-21 12:31:18 (GMT) |
commit | c724a393a9e617f5216fb97bf05a57bb6fd4df8e (patch) | |
tree | fb72603ca2af16aa6614ce48e80cb56baf74cf38 /src/QGLView.h | |
parent | 88c071c5ed526be1e19fe8bdda79605ef642844d (diff) |
distinguish between gimbal-camera and eye-center-camera
Diffstat (limited to 'src/QGLView.h')
-rw-r--r-- | src/QGLView.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/QGLView.h b/src/QGLView.h index 57e5faf..48a46df 100644 --- a/src/QGLView.h +++ b/src/QGLView.h @@ -80,8 +80,13 @@ private: void initializeGL(); void resizeGL(int w, int h); + + void setupGimbalPerspective(); + void setupGimbalOrtho(double distance,bool offset=false); + void setupPerspective(); - void setupOrtho(double distance,bool offset=false); + void setupOrtho(bool offset=false); + void paintGL(); void normalizeAngle(GLdouble& angle); |