Sketcher BSplinePoleWeight/de: Difference between revisions

From FreeCAD Documentation
(Created page with "Sketcher BSplinePolGewicht")
 
(Created page with "{{GuiCommand/de |Name=Sketcher BSplinePoleWeight |Name/de=Sketcher BSplinePolGewicht |MenuLocation=Sketch → B-Spline-Werkzeuge → Gewicht der B-Spline-Kontrollpunkte anzeig...")
Line 10: Line 10:
}}
}}


{{GuiCommand
{{GuiCommand/de
|Name=Sketcher BSplinePoleWeight
|Name=Sketcher BSplinePoleWeight
|Name/de=Sketcher BSplinePolGewicht
|MenuLocation=Sketch → Sketcher B-spline tools → Show/hide B-spline control point weight
|MenuLocation=Sketch → B-Spline-Werkzeuge → Gewicht der B-Spline-Kontrollpunkte anzeigen / ausblenden
|Workbenches=[[Sketcher_Workbench|Sketcher]]
|Workbenches=[[Sketcher_Workbench/de|Sketcher]]
|Version=0.19
|Version=0.19
|SeeAlso=[[Sketcher_CompCreateBSpline|Sketcher Create B-spline]]
|SeeAlso=[[Sketcher_CompCreateBSpline/de|AuswahlB-SplineErstellen]]
}}
}}



Revision as of 22:11, 14 August 2022

Sketcher BSplinePolGewicht

Menüeintrag
Sketch → B-Spline-Werkzeuge → Gewicht der B-Spline-Kontrollpunkte anzeigen / ausblenden
Arbeitsbereich
Sketcher
Standardtastenkürzel
Keiner
Eingeführt in Version
0.19
Siehe auch
AuswahlB-SplineErstellen

Description

Shows or hides the display of the weights for the control points of a B-spline curve (see below for an explanation of weights).

B-spline with control point weights displayed in brackets

Usage

  1. Select a B-spline and use the toolbar button Show/hide B-spline control point weight.

Weight Explanation

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

The Bézier curve is calculated using this formula:

n is hereby the degree of the curve. So a Bézier curve of degree n is a polygon with order n. The factors are hereby in fact the coordinates of the Bézier curves' control points. For a visualization see this page.

The term weight in FreeCAD is a bit misleading because in literature the factors are often called weights as well. FreeCAD's weights are something different. The idea of these weights is to modify the spline so that the different control points are "weighted". The idea is that a point with weight 2 should have twice as much influence than a point with weight 1. This is achieved by using this different formula to calculate the spline:

whereby is the weight for the point .

This is a new class of Bézier curves because despite the points are indeed weighted as desired, the curve is no longer a polynomial but a fractional polynomial. Therefore these curves are called rational Bézier curves and the B-splines is then called rational B-splines.

The consequence is that you gain more flexibility in defining the spline shape. If all weights are equal, the shape of the spline does not change. So the weights relative to each other is important, not the value alone. For example this spline has exactly the same shape as the one in the first image:

Same B-spline as in first image but with different absolute weight values

A weight of zero would be a singularity in the equation to calculate the rational Bézier curves, therefore FreeCAD assures that it cannot become zero. Nevertheless, small values have the same effect as if the control point would almost not exist:

Same B-spline with an almost zero weight control point

Changing Weights

How to change weights is described in this Wiki page.