diff --git a/src/Mod/Part/App/BSplineCurvePy.xml b/src/Mod/Part/App/BSplineCurvePy.xml
index 2e5cb2ff5..c7b7ab507 100644
--- a/src/Mod/Part/App/BSplineCurvePy.xml
+++ b/src/Mod/Part/App/BSplineCurvePy.xml
@@ -109,27 +109,60 @@ done if Degree is less than or equal to the current degree.
- Increases the multiplicity
+
+ increaseMultiplicity(int index, int mult)
+ increaseMultiplicity(int start, int end, int mult)
+ Increases multiplicity of knots up to mult.
+
+ index: the index of a knot to modify (1-based)
+ start, end: index range of knots to modify.
+ If mult is lower or equal to the current multiplicity nothing is done. If mult is higher than the degree the degree is used.
+
- Increases the multiplicity
+
+ incrementMultiplicity(int start, int end, int mult)
+ Raises multiplicity of knots by mult.
+
+ start, end: index range of knots to modify.
+
- Inserts knot.
+
+ insertKnot(u, mult = 1, tol = 0.0)
+ Inserts a knot value in the sequence of knots. If u is an existing knot the
+ multiplicity is increased by mult.
- Inserts knots.
+
+ insertKnots(list_of_floats, list_of_ints, tol = 0.0, bool_add = True)
+ Inserts a set of knots values in the sequence of knots.
+
+ 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
+ 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
+ is limited to the degree.
+
+ The tolerance criterion for knots equality is the max of Epsilon(U) and ParametricTolerance.
+
+ removeKnot(Index, M, tol)
+
Reduces the multiplicity of the knot of index Index to M.
If M is equal to 0, the knot is removed.
With a modification of this type, the array of poles is also modified.
@@ -147,7 +180,9 @@ done if Degree is less than or equal to the current degree.
- Modifies this B-Spline curve by segmenting it.
+
+ segment(u1,u2)
+ Modifies this B-Spline curve by segmenting it.
@@ -217,11 +252,14 @@ ensures that:
- Moves the point of parameter U of this B-Spline curve to P.
+
+ movePoint(U, P, Index1, Index2)
+ Moves the point of parameter U of this B-Spline curve to P.
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.
-FirstModifiedPole and LastModifiedPole are the indexes of the first and last
-poles which are effectively modified.
+
+Returns: (FirstModifiedPole, LastModifiedPole). They are the indexes of the
+first and last poles which are effectively modified.
@@ -258,6 +296,8 @@ from the knots table of this B-Spline curve.
+ approximate(list_of_points):
+
Replaces this B-Spline curve by approximating a set of points.
@@ -265,7 +305,16 @@ from the knots table of this B-Spline curve.
+ interpolate(list_of_points, bool periodic = False, float tolerance = 1e-6,
+ tangent1 = None, tangent2 = None)
+
Replaces this B-Spline curve by interpolating a set of points.
+
+ Continuity of the spline defaults to C2. However, if periodic, or tangents
+ are supplied, the continuity will drop to C1.
+
+ tangent1, tangent2 specify tangent vectors for starting and ending points
+ of the BSpline. Either none, or both must be specified.
@@ -330,7 +379,13 @@ from the knots table of this B-Spline curve.
- Tries to make the spline C1-continuous where possible.
+ 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
+ not at a given point.