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

Method paste

apps/point_cloud_editor/src/cloudEditorWidget.cpp:252–263  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

250}
251
252void
253CloudEditorWidget::paste ()
254{
255 if (!cloud_ptr_)
256 return;
257 if (!copy_buffer_ptr_ || copy_buffer_ptr_->empty())
258 return;
259 std::shared_ptr<PasteCommand> c(new PasteCommand(copy_buffer_ptr_,
260 selection_ptr_, cloud_ptr_));
261 command_queue_ptr_->execute(c);
262 update();
263}
264
265void
266CloudEditorWidget::remove ()

Callers

nothing calls this directly

Calls 3

updateFunction · 0.50
emptyMethod · 0.45
executeMethod · 0.45

Tested by

no test coverage detected