Mesh: remove trailing whitespace

This commit is contained in:
luz paz
2022-11-10 06:41:42 -05:00
committed by Chris Hennes
parent 356faf94da
commit c174e063f3
102 changed files with 632 additions and 633 deletions

View File

@@ -184,7 +184,7 @@ Gui::MenuItem* Workbench::setupMenuBar() const
// analyze
Gui::MenuItem* analyze = new Gui::MenuItem;
analyze->setCommand("Analyze");
*analyze << "Mesh_Evaluation" << "Mesh_EvaluateFacet" << "Mesh_CurvatureInfo" << "Separator"
*analyze << "Mesh_Evaluation" << "Mesh_EvaluateFacet" << "Mesh_CurvatureInfo" << "Separator"
<< "Mesh_EvaluateSolid" << "Mesh_BoundingBox";
// boolean
@@ -245,17 +245,17 @@ Gui::MenuItem* Workbench::setupMenuBar() const
Gui::ToolBarItem* Workbench::setupToolBars() const
{
Gui::ToolBarItem* root = StdWorkbench::setupToolBars();
Gui::ToolBarItem* mesh = new Gui::ToolBarItem(root);
mesh->setCommand("Mesh tools");
*mesh << "Mesh_Import"
<< "Mesh_Export"
*mesh << "Mesh_Import"
<< "Mesh_Export"
<< "Mesh_FromPartShape"
<< "Mesh_BuildRegularSolid";
Gui::ToolBarItem* modifying = new Gui::ToolBarItem(root);
modifying->setCommand("Mesh modify");
*modifying << "Mesh_HarmonizeNormals"
*modifying << "Mesh_HarmonizeNormals"
<< "Mesh_FlipNormals"
<< "Mesh_FillupHoles"
<< "Mesh_FillInteractiveHole"
@@ -265,13 +265,13 @@ Gui::ToolBarItem* Workbench::setupToolBars() const
<< "Mesh_RemeshGmsh"
<< "Mesh_Decimating"
<< "Mesh_Scale";
Gui::ToolBarItem* boolean = new Gui::ToolBarItem(root);
boolean->setCommand("Mesh boolean");
*boolean << "Mesh_Union"
<< "Mesh_Intersection"
<< "Mesh_Difference";
Gui::ToolBarItem* cutting = new Gui::ToolBarItem(root);
cutting->setCommand("Mesh cutting");
*cutting << "Mesh_PolyCut"
@@ -279,14 +279,14 @@ Gui::ToolBarItem* Workbench::setupToolBars() const
<< "Mesh_TrimByPlane"
<< "Mesh_SectionByPlane"
<< "Mesh_CrossSections";
Gui::ToolBarItem* compseg = new Gui::ToolBarItem(root);
compseg->setCommand("Mesh segmentation");
*compseg << "Mesh_Merge"
<< "Mesh_SplitComponents"
<< "Mesh_Segmentation"
<< "Mesh_SegmentationBestFit";
Gui::ToolBarItem* analyze = new Gui::ToolBarItem(root);
analyze->setCommand("Mesh analyze");
*analyze << "Mesh_Evaluation"
@@ -295,8 +295,8 @@ Gui::ToolBarItem* Workbench::setupToolBars() const
<< "Mesh_CurvatureInfo"
<< "Mesh_EvaluateSolid"
<< "Mesh_BoundingBox";
return root;
}