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

Method copy

apps/point_cloud_editor/src/cloudEditorWidget.cpp:240–250  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

238}
239
240void
241CloudEditorWidget::copy ()
242{
243 if (!cloud_ptr_)
244 return;
245 if (!selection_ptr_ || selection_ptr_->empty())
246 return;
247 std::shared_ptr<CopyCommand> c(new CopyCommand(copy_buffer_ptr_,
248 selection_ptr_, cloud_ptr_));
249 command_queue_ptr_->execute(c);
250}
251
252void
253CloudEditorWidget::paste ()

Callers

nothing calls this directly

Calls 2

emptyMethod · 0.45
executeMethod · 0.45

Tested by

no test coverage detected