+ add Poisson surface reconstruction

This commit is contained in:
wmayer
2015-12-02 23:36:26 +01:00
parent 1acf487040
commit 7eb7be3936
9 changed files with 528 additions and 19 deletions

View File

@@ -55,7 +55,14 @@ Gui::MenuItem* Workbench::setupMenuBar() const
Gui::MenuItem* reen = new Gui::MenuItem;
root->insertItem(item, reen);
reen->setCommand("&REEN");
*reen << "Reen_ApproxPlane" << "Reen_ApproxSurface";
*reen << "Reen_ApproxPlane"
<< "Reen_ApproxSurface";
Gui::MenuItem *reconstruct = new Gui::MenuItem();
reconstruct->setCommand("Surface reconstruction");
*reconstruct << "Reen_PoissonReconstruction";
*reen << reconstruct;
return root;
}