MCPcopy Create free account
hub / github.com/PointCloudLibrary/pcl / removeAllCoordinateSystems

Method removeAllCoordinateSystems

visualization/src/pcl_visualizer.cpp:1009–1022  ·  view source on GitHub ↗

////////////////////////////////////////////////////////////////////////////////////////

Source from the content-addressed store, hash-verified

1007
1008/////////////////////////////////////////////////////////////////////////////////////////////
1009bool
1010pcl::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//////////////////////////////////////////////////////////////////////////////////////////
1025bool

Callers 1

keyboard_callbackMethod · 0.80

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected