00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 00032 00033 00034 00035 00040 00041 #ifndef TRACKBALL_H_ 00042 #define TRACKBALL_H_ 00043 00044 #include <boost/math/quaternion.hpp> 00045 #include <pcl/apps/point_cloud_editor/localTypes.h> 00046 00047 class TrackBall 00048 { 00049 public: 00050 TrackBall(); 00051 TrackBall(const TrackBall ©); 00052 ~TrackBall(); 00053 00054 TrackBall& operator=(const TrackBall &rhs); 00055 00056 void start(int s_x, int s_y); 00057 00058 void update(int s_x, int s_y); 00059 00060 void getRotationMatrix(float (&rot)[MATRIX_SIZE]); 00061 00062 void reset(); 00063 00064 private: 00065 00066 void getPointFromScreenPoint(int s_x, int s_y, float &x, float &y, float &z); 00067 00069 boost::math::quaternion<float> quat_; 00070 00072 float origin_x_, origin_y_, origin_z_; 00073 00075 float radius_sqr_; 00076 00077 }; // class TrackBall 00078 00079 #endif // TRACKBALL_H_