Sketcher: add BSplineDecreaseDegree although with an empty implementation

Currently there is a command to increase the degree of a B-spline
but the corresponding command to reduce the degree does not exist.
So this command is a placeholder for when the full implementation
is added in the future by somebody.
This commit is contained in:
vocx-fc
2020-10-15 18:46:55 -05:00
committed by wmayer
parent 7f52d8bcb8
commit a1e89da8fd
2 changed files with 32 additions and 12 deletions

View File

@@ -373,7 +373,7 @@ inline void SketcherAddWorkbenchBSplines<Gui::MenuItem>(Gui::MenuItem& bspline)
<< "Sketcher_BSplineKnotMultiplicity"
<< "Sketcher_BSplineConvertToNURB"
<< "Sketcher_BSplineIncreaseDegree"
// << "Sketcher_BSplineDecreaseDegree" TODO: implement this
<< "Sketcher_BSplineDecreaseDegree" // TODO: implement this command
<< "Sketcher_BSplineIncreaseKnotMultiplicity"
<< "Sketcher_BSplineDecreaseKnotMultiplicity";
}
@@ -384,7 +384,7 @@ inline void SketcherAddWorkbenchBSplines<Gui::ToolBarItem>(Gui::ToolBarItem& bsp
bspline << "Sketcher_CompBSplineShowHideGeometryInformation"
<< "Sketcher_BSplineConvertToNURB"
<< "Sketcher_BSplineIncreaseDegree"
// << "Sketcher_BSplineDecreaseDegree" TODO: implement this
<< "Sketcher_BSplineDecreaseDegree" // TODO: implement this command
<< "Sketcher_CompModifyKnotMultiplicity";
}