17 #ifndef GAZEBO_RENDERING_VIEWCONTROLLER_HH_ 
   18 #define GAZEBO_RENDERING_VIEWCONTROLLER_HH_ 
   22 #include <ignition/math/Vector3.hh> 
   51       public: 
virtual void Init() = 0;
 
   57       public: 
virtual void Init(
const ignition::math::Vector3d &_focalPoint,
 
   58         const double _yaw = 0, 
const double _pitch = 0);
 
   62       public: 
virtual void Update() = 0;
 
   67       public: 
virtual void Resize(
const unsigned int _width,
 
   68                                   const unsigned int _height);
 
   72       public: 
void SetEnabled(
bool _value);
 
   76       public: 
virtual void HandleMouseEvent(
 
   81       public: 
virtual void HandleKeyReleaseEvent(
const std::string &_key) = 0;
 
   85       public: 
virtual void HandleKeyPressEvent(
const std::string &_key) = 0;
 
   89       public: std::string GetTypeString() 
const;
 
std::string typeString
Type of view controller. 
Definition: ViewController.hh:98
Generic description of a mouse event. 
Definition: MouseEvent.hh:35
boost::shared_ptr< UserCamera > UserCameraPtr
Definition: RenderTypes.hh:94
bool enabled
True if enabled. 
Definition: ViewController.hh:95
GAZEBO_VISIBLE void Init(google::protobuf::Message &_message, const std::string &_id="")
Initialize a message. 
Base class for view controllers. 
Definition: ViewController.hh:41
UserCameraPtr camera
Pointer to the camera to control. 
Definition: ViewController.hh:92