Description
Creates the NURBS curve equations from boundary curves of the specified NURBS surfaces, and returns an RFErrorCode value indicating whether an error occurs.
Syntax
Function RFCurveTools.CreateNurbsCurvesFromSurfaceEdges(surfaceCount As Long, pSurfaceIDs As RFEntityID, tolerance As Double, maxCurveCount As Long, pCurveCount As Long, pCurveIDs As RFEntityID) As RFErrorCode
The CreateNurbsCurvesFromSurfaceEdges syntax has these parts:
| Part | Description |
|---|---|
| surfaceCount | [IN] Long Required. Number of surfaces. |
| pSurfaceIDs | [IN] RFEntityID Required. The first element of RFEntityID array containing NURBS surfaces RFEntityID. |
| tolerance | [IN] Double Required. Distance tolerance |
| maxCurveCount | [IN] Long Required. The size of pCurveIDs array. (Maximum number of created NURBS curves expected.) |
| pCurveCount | [OUT] Long Required. Number of created NURBS curves. |
| pCurveIDs | [OUT] RFEntityID Required. The first element of RFEntityID array to store newly created NURBS curves RFEntityID. |
Remarks