Sketcher BSplinePoleWeight: Difference between revisions

From FreeCAD Documentation
No edit summary
(Marked this version for translation)
Line 28: Line 28:
[[File:sketcher_BSplineWeightShow.png|468px]]
[[File:sketcher_BSplineWeightShow.png|468px]]
<translate>
<translate>
<!--T:14-->
{{Caption|B-spline with control point weights displayed in brackets}}
{{Caption|B-spline with control point weights displayed in brackets}}


Line 33: Line 34:
[[File:sketcher_BSplineWeightHide.png|468px]]
[[File:sketcher_BSplineWeightHide.png|468px]]
<translate>
<translate>
<!--T:15-->
{{Caption|Same B-spline without weights}}
{{Caption|Same B-spline without weights}}


Line 40: Line 42:
# Select a B-spline and apply.
# Select a B-spline and apply.


==Explanation==
==Explanation== <!--T:16-->


<!--T:17-->
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).
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).


<!--T:18-->
The Bézier curve is calculated using this formula:
The Bézier curve is calculated using this formula:


<!--T:19-->
<math>\quad
<math>\quad
\textrm{Bezier}(n,t)=\sum_{i=0}^{n}\underbrace{\binom{n}{i}}_{\text{polynomial term}}\underbrace{\left(1-t\right)^{n-i}t^{i}}_{\text{polynomial term}}\; \underbrace{P_{i}}_{\text{point coordinate}}
\textrm{Bezier}(n,t)=\sum_{i=0}^{n}\underbrace{\binom{n}{i}}_{\text{polynomial term}}\underbrace{\left(1-t\right)^{n-i}t^{i}}_{\text{polynomial term}}\; \underbrace{P_{i}}_{\text{point coordinate}}
</math>
</math>


<!--T:20-->
''n'' is hereby the degree of the curve. So a Bézier curve of degree ''n'' is a polygon with order ''n''. The factors <math>P_{i}</math> are hereby in fact the coordinates of the Bézier curves' control points. For a visualization see [https://pomax.github.io/bezierinfo/#control this page].
''n'' is hereby the degree of the curve. So a Bézier curve of degree ''n'' is a polygon with order ''n''. The factors <math>P_{i}</math> are hereby in fact the coordinates of the Bézier curves' control points. For a visualization see [https://pomax.github.io/bezierinfo/#control this page].


<!--T:21-->
The term weight in FreeCAD is a bit misleading because in literature the factors <math>P_{i}</math> 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:
The term weight in FreeCAD is a bit misleading because in literature the factors <math>P_{i}</math> 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:


<!--T:22-->
<math>\quad
<math>\quad
\textrm{Rational Bezier}(n,t)=\cfrac{\sum_{i=0}^{n}\binom{n}{i}\left(1-t\right)^{n-i}t^{i}w_{i}P_{i}}{\sum_{i=0}^{n}\binom{n}{i}\left(1-t\right)^{n-i}t^{i}w_{i}\;\;\;\,}
\textrm{Rational Bezier}(n,t)=\cfrac{\sum_{i=0}^{n}\binom{n}{i}\left(1-t\right)^{n-i}t^{i}w_{i}P_{i}}{\sum_{i=0}^{n}\binom{n}{i}\left(1-t\right)^{n-i}t^{i}w_{i}\;\;\;\,}
</math>
</math>


<!--T:23-->
whereby <math>w_{i}</math> is the weight for the point <math>P_{i}</math>.
whereby <math>w_{i}</math> is the weight for the point <math>P_{i}</math>.


<!--T:24-->
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.
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.


<!--T:25-->
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:
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:


Line 67: Line 78:
[[File:sketcher_BSplineWeightDouble.png|468px]]
[[File:sketcher_BSplineWeightDouble.png|468px]]
<translate>
<translate>
<!--T:26-->
{{Caption|Same B-spline as in first image but with different absolute weight values}}
{{Caption|Same B-spline as in first image but with different absolute weight values}}


<!--T:27-->
A weight of zero would be a singularity in the equation to calculate the ration 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:
A weight of zero would be a singularity in the equation to calculate the ration 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:


Line 74: Line 87:
[[File:sketcher_BSplineWeightZero.png|468px]]
[[File:sketcher_BSplineWeightZero.png|468px]]
<translate>
<translate>
<!--T:28-->
{{Caption|Same B-spline with an almost zero weight control point}}
{{Caption|Same B-spline with an almost zero weight control point}}


==Creation==
==Creation== <!--T:29-->


<!--T:30-->
Rational B-splines are created by setting a radius for the circles of the control points. That a radius has a unit must hereby ignored, the weight is always the radius in mm (or in the base length unit you set [[Preferences_Editor#Units|in the preferences]]). So a radius of 1 µm means a weight of 0.001.
Rational B-splines are created by setting a radius for the circles of the control points. That a radius has a unit must hereby ignored, the weight is always the radius in mm (or in the base length unit you set [[Preferences_Editor#Units|in the preferences]]). So a radius of 1 µm means a weight of 0.001.
By default, meaning on creation time, all circles have the constraint to be equal. For the radius of the circle of the first point FreeCAD automatically sets a size constraint. Since all circles have the same radius, the set value is not important. So after creation you have a non-rational ("normal") B-spline.
By default, meaning on creation time, all circles have the constraint to be equal. For the radius of the circle of the first point FreeCAD automatically sets a size constraint. Since all circles have the same radius, the set value is not important. So after creation you have a non-rational ("normal") B-spline.


<!--T:31-->
To set a weight, remove the equality constraint for the circle of the desired point. You can now drag the circle to see the effect on changing its radius.<br/>'''But note:''' to set the weight fix so that further actions won't change it, you must set a size constraint.
To set a weight, remove the equality constraint for the circle of the desired point. You can now drag the circle to see the effect on changing its radius.<br/>'''But note:''' to set the weight fix so that further actions won't change it, you must set a size constraint.



Revision as of 14:53, 12 December 2020

Sketcher BSplinePoleWeight

Menu location
Sketch → Sketcher B-spline tools → Show/Hide B-spline control point weight
Workbenches
Sketcher
Default shortcut
None
Introduced in version
0.19
See also
Sketcher Create B-spline

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

File:Sketcher BSplineWeightHide.png

Same B-spline without weights

Usage

  1. Select a B-spline and apply.

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 ration 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

Creation

Rational B-splines are created by setting a radius for the circles of the control points. That a radius has a unit must hereby ignored, the weight is always the radius in mm (or in the base length unit you set in the preferences). So a radius of 1 µm means a weight of 0.001. By default, meaning on creation time, all circles have the constraint to be equal. For the radius of the circle of the first point FreeCAD automatically sets a size constraint. Since all circles have the same radius, the set value is not important. So after creation you have a non-rational ("normal") B-spline.

To set a weight, remove the equality constraint for the circle of the desired point. You can now drag the circle to see the effect on changing its radius.
But note: to set the weight fix so that further actions won't change it, you must set a size constraint.