////////////////////////////////////////////////////////////////////////////////////////
| 1007 | |
| 1008 | ///////////////////////////////////////////////////////////////////////////////////////////// |
| 1009 | bool |
| 1010 | pcl::visualization::PCLVisualizer::removeAllCoordinateSystems (int viewport) |
| 1011 | { |
| 1012 | // Check to see if the given ID entry exists |
| 1013 | auto am_it = coordinate_actor_map_->begin (); |
| 1014 | while (am_it != coordinate_actor_map_->end () ) |
| 1015 | { |
| 1016 | if (removeCoordinateSystem (am_it->first, viewport)) |
| 1017 | am_it = coordinate_actor_map_->begin (); |
| 1018 | else |
| 1019 | ++am_it; |
| 1020 | } |
| 1021 | return (true); |
| 1022 | } |
| 1023 | |
| 1024 | ////////////////////////////////////////////////////////////////////////////////////////// |
| 1025 | bool |
no test coverage detected