Go to the documentation of this file.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 #ifndef opengl_CPlanarLaserScan_H
00030 #define opengl_CPlanarLaserScan_H
00031
00032 #include <mrpt/opengl/CRenderizableDisplayList.h>
00033
00034 #include <mrpt/slam/CMetricMap.h>
00035 #include <mrpt/slam/CObservation.h>
00036 #include <mrpt/slam/CObservation2DRangeScan.h>
00037 #include <mrpt/slam/CSimplePointsMap.h>
00038
00039
00040 namespace mrpt
00041 {
00042
00043 namespace opengl
00044 {
00045 class CPlanarLaserScan;
00046
00047
00048 DEFINE_SERIALIZABLE_PRE_CUSTOM_BASE_LINKAGE( CPlanarLaserScan, CRenderizableDisplayList, MAPS_IMPEXP )
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066 class MAPS_IMPEXP CPlanarLaserScan : public CRenderizableDisplayList
00067 {
00068 DEFINE_SERIALIZABLE( CPlanarLaserScan )
00069 protected:
00070 mrpt::slam::CObservation2DRangeScan m_scan;
00071 mutable mrpt::slam::CSimplePointsMap m_cache_points;
00072 mutable bool m_cache_valid;
00073
00074
00075 float m_line_width;
00076 float m_line_R,m_line_G,m_line_B,m_line_A;
00077
00078 float m_points_width;
00079 float m_points_R,m_points_G,m_points_B,m_points_A;
00080
00081 float m_plane_R,m_plane_G,m_plane_B,m_plane_A;
00082
00083 bool m_enable_points;
00084 bool m_enable_line;
00085 bool m_enable_surface;
00086
00087 public:
00088 void clear();
00089
00090
00091 inline void enablePoints(bool enable=true) { m_enable_points=enable; CRenderizableDisplayList::notifyChange(); }
00092
00093
00094 inline void enableLine(bool enable=true) { m_enable_line=enable; CRenderizableDisplayList::notifyChange(); }
00095
00096
00097 inline void enableSurface(bool enable=true) { m_enable_surface=enable; CRenderizableDisplayList::notifyChange(); }
00098
00099 void setLineWidth(float w) { m_line_width=w; }
00100 float getLineWidth() const { return m_line_width;}
00101
00102 void sePointsWidth(float w) { m_points_width=w; }
00103
00104 void setLineColor(float R,float G, float B, float A=1.0f)
00105 {
00106 m_line_R=R;
00107 m_line_G=G;
00108 m_line_B=B;
00109 m_line_A=A;
00110 }
00111 void setPointsColor(float R,float G, float B, float A=1.0f)
00112 {
00113 m_points_R=R;
00114 m_points_G=G;
00115 m_points_B=B;
00116 m_points_A=A;
00117 }
00118 void setSurfaceColor(float R,float G, float B, float A=1.0f)
00119 {
00120 m_plane_R=R;
00121 m_plane_G=G;
00122 m_plane_B=B;
00123 m_plane_A=A;
00124 }
00125
00126 void setScan( const mrpt::slam::CObservation2DRangeScan &scan)
00127 {
00128 CRenderizableDisplayList::notifyChange();
00129 m_cache_valid = false;
00130 m_scan = scan;
00131 }
00132
00133
00134
00135 void render_dl() const;
00136
00137 private:
00138
00139
00140 CPlanarLaserScan( );
00141
00142
00143 virtual ~CPlanarLaserScan() { }
00144 };
00145
00146 }
00147
00148 }
00149
00150
00151 #endif