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

Method cut

apps/point_cloud_editor/src/cloudEditorWidget.cpp:278–289  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

276}
277
278void
279CloudEditorWidget::cut ()
280{
281 if (!cloud_ptr_)
282 return;
283 if (!selection_ptr_ || selection_ptr_->empty())
284 return;
285 std::shared_ptr<CutCommand> c(new CutCommand(copy_buffer_ptr_,
286 selection_ptr_, cloud_ptr_));
287 command_queue_ptr_->execute(c);
288 update();
289}
290
291void
292CloudEditorWidget::transform ()

Callers

nothing calls this directly

Calls 3

updateFunction · 0.50
emptyMethod · 0.45
executeMethod · 0.45

Tested by

no test coverage detected