add command to merge point clouds

This commit is contained in:
wmayer
2017-05-08 21:50:03 +02:00
parent 164b8c7f93
commit 0ad2e47f4d
2 changed files with 47 additions and 1 deletions

View File

@@ -76,7 +76,9 @@ Gui::MenuItem* Workbench::setupMenuBar() const
root->insertItem(item, pnts);
pnts->setCommand("&Points");
*pnts << "Points_Convert" << "Separator" << "Points_Import" << "Points_Export" << "Separator" << "Points_PolyCut";
*pnts << "Points_Convert" << "Separator" << "Points_Import"
<< "Points_Export" << "Separator" << "Points_PolyCut"
<< "Points_Merge";
return root;
}