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