Description
Divides specified NURBS curves at all the intersecting points and returns an RFErrorCode value indicating whether an error occurs.
Syntax
Function RFCurveTools.TrimNurbsCurvesGlobal(inCurveCount As Long, pInCurveIDs As RFEntityID, maxCurveCount As Long, pOutCurveCount As Long, pOutCurveIDs As RFEntityID) As RFErrorCode
The TrimNurbsCurvesGlobal syntax has these parts:
| Part | Description |
|---|---|
| inCurveCount | [IN] Long Required. Number of NURBS curves to divide. |
| pInCurveIDs | [IN] RFEntityID Required. The first element of RFEntityID array containing NURBS curves RFEntityID. |
| maxCurveCount | [IN] Long Required. The size of pOutCurveIDs array. (Maximum number of divided NURBS curves expected.) |
| pOutCurveCount | [OUT] Long Required. Number of divided NURBS curves. |
| pOutCurveIDs | [OUT] RFEntityID Required. The first element of RFEntityID array to store divided NURBS curves RFEntityID. |
Remarks