Divides the Bezier curve at the specified parameter.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 6.0
Syntax public bool Split(
double t,
out BezierCurve left,
out BezierCurve right
)
Public Function Split (
t As Double,
<OutAttribute> ByRef left As BezierCurve,
<OutAttribute> ByRef right As BezierCurve
) As Boolean
Parameters
- t
- Type: SystemDouble
parameter must satisfy 0 < t < 1 - left
- Type: Rhino.GeometryBezierCurve
- right
- Type: Rhino.GeometryBezierCurve
Return Value
Type:
Booleantrue on success
See Also