Sketcher: Add toolbar command to increase knot multiplicity

This commit is contained in:
Abdullah Tahiri
2017-02-27 15:40:59 +01:00
committed by wmayer
parent e34788b6fc
commit bd2f7a0924
2 changed files with 105 additions and 3 deletions

View File

@@ -288,14 +288,16 @@ inline void SketcherAddWorkbenchBSplines<Gui::MenuItem>(Gui::MenuItem& bspline){
<< "Sketcher_BSplineComb"
<< "Sketcher_BSplineKnotMultiplicity"
<< "Sketcher_BSplineConvertToNURB"
<< "Sketcher_BSplineIncreaseDegree";
<< "Sketcher_BSplineIncreaseDegree"
<< "Sketcher_BSplineIncreaseKnotMultiplicity";
}
template <>
inline void SketcherAddWorkbenchBSplines<Gui::ToolBarItem>(Gui::ToolBarItem& bspline){
bspline << "Sketcher_CompBSplineShowHideGeometryInformation"
<< "Sketcher_BSplineConvertToNURB"
<< "Sketcher_BSplineIncreaseDegree";
<< "Sketcher_BSplineIncreaseDegree"
<< "Sketcher_BSplineIncreaseKnotMultiplicity";
}
template <typename T>