GlobeEngine
PassiveCamera.h
Go to the documentation of this file.
1 #ifndef ExoViewer_PassiveCamera_h
2 #define ExoViewer_PassiveCamera_h
3 
4 #include "Camera.h"
5 
6 namespace geAstro{
7 
9 {
10 
11 public:
12  void setProjectionMatrix(vmml::Matrix4d _proj){
13  this->projectionMatrix=_proj;
14  }
15 
16  void setViewMatrix(vmml::Matrix4d _view){
17  this->viewMatrix=_view;
18  }
19 
20  virtual void update(){}
21 
22 };
23 
24 } //end namespace
25 
26 #endif
vmml::Matrix4d projectionMatrix
Definition: Camera.h:102
Definition: ArcBallCamera.h:19
Definition: AstroCommon.h:18
Definition: PassiveCamera.h:8
vmml::Matrix4d viewMatrix
Definition: Camera.h:101
void setProjectionMatrix(vmml::Matrix4d _proj)
Definition: PassiveCamera.h:12
virtual void update()
Definition: PassiveCamera.h:20
void setViewMatrix(vmml::Matrix4d _view)
Definition: PassiveCamera.h:16