Sketcher BSplineIncreaseDegree/de: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
(10 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<languages/>
<languages/>

<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
{{Docnav/de
{{Docnav/de
|[[Sketcher_BSplineApproximate/de|BSplineApproximieren]]
|[[Sketcher_BSplineConvertToNURB/de|Umwandeln Geometrie zu B-spline]]
|[[Sketcher_BSplineDecreaseDegree/de|BSplineGradVerringern]]
|[[Sketcher_BSplineIncreaseKnotMultiplicity/de|Knotenvielfalt erhöhen]]
|[[Sketcher_Workbench/de|Skizzierer]]
|[[Sketcher_Workbench/de|Sketcher]]
|IconL=Sketcher_BSplineConvertToNURB.svg
|IconL=Sketcher_BSplineApproximate.svg
|IconR=Sketcher_BSplineIncreaseKnotMultiplicity.svg
|IconC=Workbench_Sketcher.svg
|IconC=Workbench_Sketcher.svg
}}
|IconR=Sketcher_BSplineIncreaseKnotMultiplicity.svg}}
</div>
</div>


Line 13: Line 15:
{{GuiCommand/de
{{GuiCommand/de
|Name=Sketcher BSplineIncreaseDegree
|Name=Sketcher BSplineIncreaseDegree
|Name/de=Skizzierer BSplineErhöhungsgrad
|Name/de=Sketcher BSplineGradErhöhen
|MenuLocation=Sketch → B-Spline-Werkzeuge → Grad des B-Splines erhöhen
|Workbenches=[[Sketcher Workbench/de|Skizzierer]]
|Workbenches=[[Sketcher_Workbench/de|Sketcher]]
|MenuLocation=Skizze Skizzierer B-spline Werkzeuge → Grad der B-spline erhöhen
|Version=0.17
|Version=0.17
|SeeAlso=[[Sketcher_BSplineDegree/de|BSplineGrad]], [[Sketcher_BSplineDecreaseDegree/de|BSplineGradVerringern]]
|SeeAlso=[[Sketcher CompCreateBSpline/de|Erstelle B-spline]]
}}
}}
</div>
</div>


<span id="Description"></span>
==Beschreibung==
==Beschreibung==


<div class="mw-translate-fuzzy">
Erhöht den Grad des B-Splines (siehe [https://en.wikipedia.org/wiki/B-spline B-Spline]).
Erhöht den Grad (Ordnung) der B-Spline-Kurve (Siehe die Seite [[B-Splines|B-Splines]] für weitere Informationen über B-splines).
</div>

<span id="Usage"></span>
==Anwendung==

<div class="mw-translate-fuzzy">
# Eine Kante eines existierenden B-Splines auswählen.
# Die Schaltfläche {{Button|[[File:Sketcher_BSplineIncreaseDegree.svg|24px]] '''Grad des B-Splines erhöhen''' drücken}}.
</div>

==Example==

B-splines are basically a combination of [[B-Splines#B.C3.A9zier_curves|Bézier curves]] (nicely explained in [https://www.youtube.com/watch?v=bE1MrrqBAl8 this] and [https://www.youtube.com/watch?v=xXJylM2S72s this] video).


In this cubic B-spline (degree 3) there are 3 segments, meaning 3 curves are connected at 2 knots.
B-splines are basically a combination of [https://en.wikipedia.org/wiki/Bezier_curve#Constructing_B%C3%A9zier_curves Bézier curves] (nicely explained in [https://www.youtube.com/watch?v=bE1MrrqBAl8 this] and [https://www.youtube.com/watch?v=xXJylM2S72s this] video).


In this cubic spline (degree 3) there are 3 segments, meaning 3 curves are connected at 2 knots<br>(degree is indicated by the number, indication can be changed using the toolbar button {{Button|[[File:Sketcher_BSplineDegree.svg|24px]] [[Sketcher_BSplineDegree|Show/hide B-spline degree]]}}):
The degree is indicated by the number in the center. See [[File:Sketcher_BSplineDegree.svg|16px]] [[Sketcher_BSplineDegree|Show/hide B-spline degree]].


[[File:Sketcher_BSplineDegree3.png|400px]]
[[File:Sketcher_BSplineDegree3.png|400px]]
{{Caption|B-spline with degree 3 and 2 knots that each have the multiplicity 1.}}
{{Caption|B-spline with degree 3 and 2 knots that each have multiplicity 1.}}


The outer segments have each 2 control points, the inner one none to fulfill the constraint that the knots have multiplicity 1. (see [[Sketcher_BSplineDecreaseKnotMultiplicity#Description|this page]] for an explanation of the multiplicity)
The outer segments each have 2 control points, the inner segment has none to ensure the knots have multiplicity 1. See [[Sketcher_BSplineDecreaseKnotMultiplicity#Description|this page]] for an explanation about multiplicity.


Increasing the degree will add control points and the shape of the spline is not changed:
Increasing the degree to 4 will add control points without changing the shape of the B-spline:


[[File:Sketcher_BSplineDegree4.png|400px]]
[[File:Sketcher_BSplineDegree4.png|400px]]
{{Caption|Same B-spline where the degree was changed from 3 to 4. Note that also the knot multiplicity was increased.}}
{{Caption|Same B-spline where the degree was changed from 3 to 4. Note that the knot multiplicity has also increased.}}


If you take this result and decrease the degree, you cannot get the initial state of the spline information will be lost by this operation. For our example decreasing the degree again leads to this:
From this result you cannot get back to the initial state of the B-spline by decreasing the degree. Some information is lost when the degree of a B-spline is changed. Decreasing the degree back to 3 leads to this:


[[File:Sketcher_BSplineDegree3from4.png|400px]]
[[File:Sketcher_BSplineDegree3from4.png|400px]]
{{Caption|Same B-spline where the degree was changed back from 4 to 3. Note that the knot multiplicity was increased.}}
{{Caption|Same B-spline where the degree was changed back from 4 to 3. Note that the knot multiplicity has increased again. Depending on the B-spline, the algorithm to decrease the degree may add a lot of knots to preserve the shape as has happened here.}}


You can see that now each segment has 2 control points and the knots are coincident with each a further control point. The knots have now ''C''<sup>0</sup> continuity so that the spline will get "edges" when you move a control point. So the information of a higher continuity is lost. (see [[Sketcher_BSplineDecreaseKnotMultiplicity#Description|this page]] to for an explanation of the continuity)
Each segment now has 2 control points and each knot is coincident with an additional control point. The knots have ''C<sup>0</sup>'' continuity so that the B-spline will get "corners" if you move a control point. The information of a higher continuity is therefore lost. See [[Sketcher_BSplineDecreaseKnotMultiplicity#Description|this page]] for an explanation about continuity.

==Anwendung==

<div class="mw-translate-fuzzy">
# Wähle eine Kante eines existierenden B-Spline und drücke {{Button|[[File:Sketcher_BSplineIncreaseDegree.svg|16px]] [[Sketcher_BSplineIncreaseDegree/de|B-spline Grad erhöhen]]}}.
</div>




<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
{{Docnav/de
{{Docnav/de
|[[Sketcher_BSplineApproximate/de|BSplineApproximieren]]
|[[Sketcher_BSplineConvertToNURB/de|Umwandeln Geometrie zu B-spline]]
|[[Sketcher_BSplineDecreaseDegree/de|BSplineGradVerringern]]
|[[Sketcher_BSplineIncreaseKnotMultiplicity/de|Knotenvielfalt erhöhen]]
|[[Sketcher_Workbench/de|Skizzierer]]
|[[Sketcher_Workbench/de|Sketcher]]
|IconL=Sketcher_BSplineConvertToNURB.svg
|IconL=Sketcher_BSplineApproximate.svg
|IconR=Sketcher_BSplineIncreaseKnotMultiplicity.svg
|IconC=Workbench_Sketcher.svg
|IconC=Workbench_Sketcher.svg
}}
|IconR=Sketcher_BSplineIncreaseKnotMultiplicity.svg}}
</div>
</div>


{{Sketcher Tools navi{{#translation:}}}}
{{Sketcher_Tools_navi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
{{clear}}

Revision as of 07:28, 22 April 2024

Sketcher BSplineGradErhöhen

Menüeintrag
Sketch → B-Spline-Werkzeuge → Grad des B-Splines erhöhen
Arbeitsbereich
Sketcher
Standardtastenkürzel
Keiner
Eingeführt in Version
0.17
Siehe auch
BSplineGrad, BSplineGradVerringern

Beschreibung

Erhöht den Grad (Ordnung) der B-Spline-Kurve (Siehe die Seite B-Splines für weitere Informationen über B-splines).

Anwendung

  1. Eine Kante eines existierenden B-Splines auswählen.
  2. Die Schaltfläche Grad des B-Splines erhöhen drücken.

Example

B-splines are basically a combination of Bézier curves (nicely explained in this and this video).

In this cubic B-spline (degree 3) there are 3 segments, meaning 3 curves are connected at 2 knots.

The degree is indicated by the number in the center. See Show/hide B-spline degree.

B-spline with degree 3 and 2 knots that each have multiplicity 1.

The outer segments each have 2 control points, the inner segment has none to ensure the knots have multiplicity 1. See this page for an explanation about multiplicity.

Increasing the degree to 4 will add control points without changing the shape of the B-spline:

Same B-spline where the degree was changed from 3 to 4. Note that the knot multiplicity has also increased.

From this result you cannot get back to the initial state of the B-spline by decreasing the degree. Some information is lost when the degree of a B-spline is changed. Decreasing the degree back to 3 leads to this:

Same B-spline where the degree was changed back from 4 to 3. Note that the knot multiplicity has increased again. Depending on the B-spline, the algorithm to decrease the degree may add a lot of knots to preserve the shape as has happened here.

Each segment now has 2 control points and each knot is coincident with an additional control point. The knots have C0 continuity so that the B-spline will get "corners" if you move a control point. The information of a higher continuity is therefore lost. See this page for an explanation about continuity.