PickHandler.hpp 385 B

12345678910111213141516171819
  1. #ifndef PickHandler_h__
  2. #define PickHandler_h__
  3. #include <osgGA/GUIEventHandler>
  4. class PickHandler : public osgGA::GUIEventHandler
  5. {
  6. public:
  7. PickHandler( double devicePixelRatio = 1.0 );
  8. virtual ~PickHandler();
  9. virtual bool handle( const osgGA::GUIEventAdapter& ea,
  10. osgGA::GUIActionAdapter& aa );
  11. private:
  12. double devicePixelRatio_;
  13. };
  14. #endif