Description
Creates the NURBS curve equations by intersecting a specified shell with a specified infinite plane, and returns an RFErrorCode value indicating whether an error occurs.
Syntax
Function RFCurveTools.CreateSliceNurbsCurve(shellID As RFEntityID, pPlane As RFPlane, maxCurveCount As Long, pCurveCount As Long, pCurveIDs As RFEntityID) As RFErrorCode
The CreateSliceNurbsCurve syntax has these parts:
| Part | Description |
|---|---|
| shellID | [IN] RFEntityID Required. Shell's RFEntityID. |
| pPlane | [IN] RFPlane Required. Plane geometry. |
| 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 created NURBS curves RFEntityID. |
Remarks