Description
Divides a specified NURBS curve into two and returns an RFErrorCode value indicating whether an error occurs.
Syntax
Function RFCurveTools.TrimNurbsCurveAt(curveID As RFEntityID, parameter As Double, pLowerCurveID As RFEntityID, pUpperCurveID As RFEntityID) As RFErrorCode
The TrimNurbsCurveAt syntax has these parts:
| Part | Description |
|---|---|
| curveID | [IN] RFEntityID Required. NURBS curve's RFEntityID to divide. |
| parameter | [IN] Double Required. Parameter on which the specified NURBS curve is divided. |
| pLowerCurveID | [OUT] RFEntityID Required. Newly created NURBS curve's RFEntityID representing the lower part of the original NURBS curve. |
| pUpperCurveID | [OUT] RFEntityID Required. Newly created NURBS curve's RFEntityID representing the upper part of the original NURBS curve. |
Remarks