Description
Creates N-boundary surface from curves.
Syntax
Function RFSurfaceTools.CreateNBoundarySurfaceFromCurves(iCurveCount As Long, pCurveIDs As RFEntityID, shellID As RFEntityID, iTotalControlPointCount As Long, iUControlPointCount As Long, iVControlPointCount As Long, bTrimmed As Boolean, bSatisfyG1 As Boolean, pNewSurfaceID As RFEntityID) As RFErrorCode
The CreateNBoundarySurfaceFromCurves syntax has these parts:
| Part | Description |
|---|---|
| iCurveCount | [IN] Long Required. The number of curves. |
| pCurveIDs | [IN] RFEntityID Required. Entity IDs of curves. |
| shellID | [IN] RFEntityID Required. Entity ID of shell. |
| iTotalControlPointCount | [IN] Long Required. Total number of control points. |
| iUControlPointCount | [IN] Long Required. The number of control points for U direction. |
| iVControlPointCount | [IN] Long Required. The number of control points for V direction. |
| bTrimmed | [IN] Boolean Required. Flag that indicates whether created surface is trimmed or not. |
| bSatisfyG1 | [IN] Boolean Required. Flag that indicates whether created surface meets G1 continuity or not. |
| pNewSurfaceID | [OUT] RFEntityID Required. Entity ID of new surface. |
Remarks