////////////////////////////////////////////////////////////////////////////////////////
| 966 | |
| 967 | ///////////////////////////////////////////////////////////////////////////////////////////// |
| 968 | bool |
| 969 | pcl::visualization::PCLVisualizer::removeAllPointClouds (int viewport) |
| 970 | { |
| 971 | // Check to see if the given ID entry exists |
| 972 | auto am_it = cloud_actor_map_->begin (); |
| 973 | while (am_it != cloud_actor_map_->end () ) |
| 974 | { |
| 975 | if (removePointCloud (am_it->first, viewport)) |
| 976 | am_it = cloud_actor_map_->begin (); |
| 977 | else |
| 978 | ++am_it; |
| 979 | } |
| 980 | return (true); |
| 981 | } |
| 982 | |
| 983 | ///////////////////////////////////////////////////////////////////////////////////////////// |
| 984 | bool |
no test coverage detected