Description
Divides specified two NURBS curves at all the intersecting points and returns an RFErrorCode value indicating whether an error occurs.
Syntax
Function RFCurveTools.TrimTwoNurbsCurves(curveID1 As RFEntityID, curveID2 As RFEntityID, maxCurveCount As Long, pOutCurveCount As Long, pOutCurveIDs As RFEntityID) As RFErrorCode
The TrimTwoNurbsCurves syntax has these parts:
| Part | Description |
|---|---|
| curveID1 | [IN] RFEntityID Required. First NURBS curve's RFEntityID. |
| curveID2 | [IN] RFEntityID Required. Second NURBS curve's 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