Part: Add Python signature for B-spline curve split

This commit is contained in:
Chris Hennes
2026-01-29 15:35:44 +01:00
parent 603ec56151
commit 8a369481d6
+9
View File
@@ -195,6 +195,15 @@ class BSplineCurve(BoundedCurve):
"""
...
@constmethod
def split(self, u: float, tolerance: float = 0.0, /) -> tuple[BSplineCurve, BSplineCurve]:
"""
split(u, tolerance=0.0)
Splits this B-Spline curve at parameter u and returns the two resulting curves.
"""
...
def setKnot(self, knot: float, index: int, /) -> None:
"""
Set a knot of the B-Spline curve.