| 27 | namespace octomap { |
| 28 | |
| 29 | PointcloudDrawer::PointcloudDrawer() |
| 30 | : ScanGraphDrawer(), m_pointsArray(NULL), m_numberPoints(0) |
| 31 | { |
| 32 | } |
| 33 | |
| 34 | PointcloudDrawer::PointcloudDrawer(const ScanGraph& graph) |
| 35 | : ScanGraphDrawer(), m_pointsArray(NULL), m_numberPoints(0) |
nothing calls this directly
no test coverage detected