diff --git a/src/Mod/Part/App/BSplineCurvePy.xml b/src/Mod/Part/App/BSplineCurvePy.xml
index 55eb32897f..fa1602a4ea 100644
--- a/src/Mod/Part/App/BSplineCurvePy.xml
+++ b/src/Mod/Part/App/BSplineCurvePy.xml
@@ -142,7 +142,7 @@ done if Degree is less than or equal to the current degree.
insertKnot(u, mult = 1, tol = 0.0)
- Inserts a knot value in the sequence of knots. If u is an existing knot the
+ Inserts a knot value in the sequence of knots. If u is an existing knot the
multiplicity is increased by mult.
@@ -154,12 +154,12 @@ done if Degree is less than or equal to the current degree.
For each u = list_of_floats[i], mult = list_of_ints[i]
- If u is an existing knot the multiplicity is increased by mult if bool_add is
+ If u is an existing knot the multiplicity is increased by mult if bool_add is
True, otherwise increased to mult.
If u is not on the parameter range nothing is done.
- If the multiplicity is negative or null nothing is done. The new multiplicity
+ If the multiplicity is negative or null nothing is done. The new multiplicity
is limited to the degree.
The tolerance criterion for knots equality is the max of Epsilon(U) and ParametricTolerance.
@@ -266,7 +266,7 @@ ensures that:
Index1 and Index2 are the indexes in the table of poles of this B-Spline curve
of the first and last poles designated to be moved.
-Returns: (FirstModifiedPole, LastModifiedPole). They are the indexes of the
+Returns: (FirstModifiedPole, LastModifiedPole). They are the indexes of the
first and last poles which are effectively modified.
@@ -290,7 +290,7 @@ the knots and poles tables are modified.
- Returns the multiplicity of the knot of index
+ Returns the multiplicity of the knot of index
from the knots table of this B-Spline curve.
@@ -307,7 +307,7 @@ from the knots table of this B-Spline curve.
Replaces this B-Spline curve by approximating a set of points.
The function accepts keywords as arguments.
- approximate(Points = list_of_points)
+ approximate(Points = list_of_points)
Optional arguments :
@@ -318,9 +318,9 @@ from the knots table of this B-Spline curve.
Possible values : 'C0','G1','C1','G2','C2','C3','CN'
LengthWeight = float, CurvatureWeight = float, TorsionWeight = float
- If one of these arguments is not null, the functions approximates the
- points using variational smoothing algorithm, which tries to minimize
- additional criterium:
+ If one of these arguments is not null, the functions approximates the
+ points using variational smoothing algorithm, which tries to minimize
+ additional criterium:
LengthWeight*CurveLength + CurvatureWeight*Curvature + TorsionWeight*Torsion
Continuity must be C0, C1(with DegMax >= 3) or C2(with DegMax >= 5).
@@ -330,7 +330,7 @@ from the knots table of this B-Spline curve.
ParamType = string ('Uniform','Centripetal' or 'ChordLength')
Parameterization type. Only used if weights and Parameters above aren't specified.
- Note : Continuity of the spline defaults to C2. However, it may not be applied if
+ Note : Continuity of the spline defaults to C2. However, it may not be applied if
it conflicts with other parameters ( especially DegMax ).
@@ -346,7 +346,7 @@ from the knots table of this B-Spline curve.
Replaces this B-Spline curve by interpolating a set of points.
The function accepts keywords as arguments.
- interpolate(Points = list_of_points)
+ interpolate(Points = list_of_points)
Optional arguments :
@@ -360,7 +360,7 @@ from the knots table of this B-Spline curve.
EndPoint Tangent constraints :
InitialTangent = vector, FinalTangent = vector
- specify tangent vectors for starting and ending points
+ specify tangent vectors for starting and ending points
of the BSpline. Either none, or both must be specified.
Full Tangent constraints :
@@ -371,7 +371,7 @@ from the knots table of this B-Spline curve.
TangentFlags (bool) activates or deactivates the corresponding tangent.
These arguments will be ignored if EndPoint Tangents (above) are also defined.
- Note : Continuity of the spline defaults to C2. However, if periodic, or tangents
+ Note : Continuity of the spline defaults to C2. However, if periodic, or tangents
are supplied, the continuity will drop to C1.
@@ -388,7 +388,7 @@ from the knots table of this B-Spline curve.
Builds a B-Spline by a lists of Poles, Mults, Knots.
arguments: poles (sequence of Base.Vector), [mults , knots, periodic, degree, weights (sequence of float), CheckRational]
-
+
Examples:
from FreeCAD import Base
import Part
@@ -399,7 +399,7 @@ from the knots table of this B-Spline curve.
n=Part.BSplineCurve()
n.buildFromPolesMultsKnots(poles,(3,1,3),(0,0.5,1),False,2)
Part.show(n.toShape())
-
+
# periodic spline
p=Part.BSplineCurve()
p.buildFromPolesMultsKnots(poles,(1,1,1,1,1),(0,0.25,0.5,0.75,1),True,2)
@@ -422,7 +422,7 @@ from the knots table of this B-Spline curve.
- Build a list of arcs and lines to approximate the b-spline.
+ Build a list of arcs and lines to approximate the B-spline.
toBiArcs(tolerance) -> list.
@@ -438,11 +438,11 @@ from the knots table of this B-Spline curve.
makeC1Continuous(tol = 1e-6, ang_tol = 1e-7)
- Reduces as far as possible the multiplicities of the knots of this BSpline
- (keeping the geometry). It returns a new BSpline, which could still be C0.
- tol is a geometrical tolerance.
- The tol_ang is angular tolerance, in radians. It sets tolerable angle mismatch
- of the tangents on the left and on the right to decide if the curve is G1 or
+ Reduces as far as possible the multiplicities of the knots of this BSpline
+ (keeping the geometry). It returns a new BSpline, which could still be C0.
+ tol is a geometrical tolerance.
+ The tol_ang is angular tolerance, in radians. It sets tolerable angle mismatch
+ of the tangents on the left and on the right to decide if the curve is G1 or
not at a given point.
diff --git a/src/Mod/Part/App/Geom2d/BSplineCurve2dPy.xml b/src/Mod/Part/App/Geom2d/BSplineCurve2dPy.xml
index 1622812972..68685667af 100644
--- a/src/Mod/Part/App/Geom2d/BSplineCurve2dPy.xml
+++ b/src/Mod/Part/App/Geom2d/BSplineCurve2dPy.xml
@@ -135,7 +135,7 @@ done if Degree is less than or equal to the current degree.
insertKnot(u, mult = 1, tol = 0.0)
- Inserts a knot value in the sequence of knots. If u is an existing knot the
+ Inserts a knot value in the sequence of knots. If u is an existing knot the
multiplicity is increased by mult.
@@ -147,12 +147,12 @@ done if Degree is less than or equal to the current degree.
For each u = list_of_floats[i], mult = list_of_ints[i]
- If u is an existing knot the multiplicity is increased by mult if bool_add is
+ If u is an existing knot the multiplicity is increased by mult if bool_add is
True, otherwise increased to mult.
If u is not on the parameter range nothing is done.
- If the multiplicity is negative or null nothing is done. The new multiplicity
+ If the multiplicity is negative or null nothing is done. The new multiplicity
is limited to the degree.
The tolerance criterion for knots equality is the max of Epsilon(U) and ParametricTolerance.
@@ -259,7 +259,7 @@ ensures that:
Index1 and Index2 are the indexes in the table of poles of this B-Spline curve
of the first and last poles designated to be moved.
-Returns: (FirstModifiedPole, LastModifiedPole). They are the indexes of the
+Returns: (FirstModifiedPole, LastModifiedPole). They are the indexes of the
first and last poles which are effectively modified.
@@ -283,7 +283,7 @@ the knots and poles tables are modified.
- Returns the multiplicity of the knot of index
+ Returns the multiplicity of the knot of index
from the knots table of this B-Spline curve.
@@ -300,7 +300,7 @@ from the knots table of this B-Spline curve.
Replaces this B-Spline curve by approximating a set of points.
The function accepts keywords as arguments.
- approximate2(Points = list_of_points)
+ approximate2(Points = list_of_points)
Optional arguments :
@@ -311,9 +311,9 @@ from the knots table of this B-Spline curve.
Possible values : 'C0','G1','C1','G2','C2','C3','CN'
LengthWeight = float, CurvatureWeight = float, TorsionWeight = float
- If one of these arguments is not null, the functions approximates the
- points using variational smoothing algorithm, which tries to minimize
- additional criterium:
+ If one of these arguments is not null, the functions approximates the
+ points using variational smoothing algorithm, which tries to minimize
+ additional criterium:
LengthWeight*CurveLength + CurvatureWeight*Curvature + TorsionWeight*Torsion
Continuity must be C0, C1 or C2, else defaults to C2.
@@ -323,7 +323,7 @@ from the knots table of this B-Spline curve.
ParamType = string ('Uniform','Centripetal' or 'ChordLength')
Parameterization type. Only used if weights and Parameters above aren't specified.
- Note : Continuity of the spline defaults to C2. However, it may not be applied if
+ Note : Continuity of the spline defaults to C2. However, it may not be applied if
it conflicts with other parameters ( especially DegMax ).
@@ -339,7 +339,7 @@ from the knots table of this B-Spline curve.
Replaces this B-Spline curve by interpolating a set of points.
The function accepts keywords as arguments.
- interpolate(Points = list_of_points)
+ interpolate(Points = list_of_points)
Optional arguments :
@@ -353,7 +353,7 @@ from the knots table of this B-Spline curve.
EndPoint Tangent constraints :
InitialTangent = vector, FinalTangent = vector
- specify tangent vectors for starting and ending points
+ specify tangent vectors for starting and ending points
of the BSpline. Either none, or both must be specified.
Full Tangent constraints :
@@ -364,7 +364,7 @@ from the knots table of this B-Spline curve.
TangentFlags (bool) activates or deactivates the corresponding tangent.
These arguments will be ignored if EndPoint Tangents (above) are also defined.
- Note : Continuity of the spline defaults to C2. However, if periodic, or tangents
+ Note : Continuity of the spline defaults to C2. However, if periodic, or tangents
are supplied, the continuity will drop to C1.
@@ -381,7 +381,7 @@ from the knots table of this B-Spline curve.
Builds a B-Spline by a lists of Poles, Mults, Knots.
arguments: poles (sequence of Base.Vector), [mults , knots, periodic, degree, weights (sequence of float), CheckRational]
-
+
Examples:
from FreeCAD import Base
import Part
@@ -392,7 +392,7 @@ from the knots table of this B-Spline curve.
n=Part.BSplineCurve()
n.buildFromPolesMultsKnots(poles,(3,1,3),(0,0.5,1),False,2)
Part.show(n.toShape())
-
+
# periodic spline
p=Part.BSplineCurve()
p.buildFromPolesMultsKnots(poles,(1,1,1,1,1),(0,0.25,0.5,0.75,1),True,2)
@@ -415,7 +415,7 @@ from the knots table of this B-Spline curve.
- Build a list of arcs and lines to approximate the b-spline.
+ Build a list of arcs and lines to approximate the B-spline.
toBiArcs(tolerance) -> list.
@@ -431,11 +431,11 @@ from the knots table of this B-Spline curve.
makeC1Continuous(tol = 1e-6, ang_tol = 1e-7)
- Reduces as far as possible the multiplicities of the knots of this BSpline
- (keeping the geometry). It returns a new BSpline, which could still be C0.
- tol is a geometrical tolerance.
- The tol_ang is angular tolerance, in radians. It sets tolerable angle mismatch
- of the tangents on the left and on the right to decide if the curve is G1 or
+ Reduces as far as possible the multiplicities of the knots of this BSpline
+ (keeping the geometry). It returns a new BSpline, which could still be C0.
+ tol is a geometrical tolerance.
+ The tol_ang is angular tolerance, in radians. It sets tolerable angle mismatch
+ of the tangents on the left and on the right to decide if the curve is G1 or
not at a given point.