Creates two new curves that are the result of splitting this curve at the specified point. The original curve is left unchanged.
Name | Type | Description |
SplitParam | Double | Input Double that specifies the parameter where the curve is to be split. |
CurveOne | BSplineCurve2d | Output BSplineCurve2d that is the portion of the curve from the start of the curve to the split parameter location. |
CurveTwo | BSplineCurve2d | Output BSplineCurve2d that is the portion of the curve from the split parameter location to the end of the curve. |
Name | Description |
Split a 2D Curve | Demonstrates the ability to extract split curves from a transient geometry curve. This sample has you select an existing sketch spline and splits it at the midpoint of parametric space. It then creates real curves using the split curve results and deletes the original sketch curve. |