Description
Fills hole-loops in a specified shell with specified options and returns an RFErrorCode value indicating whether an error occurs.
Syntax
Function RFMeshTools.FillHolesShell(shellID As RFEntityID, vertexCount As Long, method As RFFillHoleMethod, bSmoothBoundary As Boolean, bExceptLargestHole As Boolean) As RFErrorCode
The FillHolesShell syntax has these parts:
| Part | Description |
|---|---|
| shellID | [IN] RFEntityID Required. Shell's RFEntityID to fill the hole-loops. |
| vertexCount | [IN] Long Required. Maximum limit of the number of boundary vertices forming a hole-loop to fill. |
| method | [IN] RFFillHoleMethod Required. Filling method to perform. |
| bSmoothBoundary | [IN] Boolean Required. It determines whether boundary vertices in a hole-loop are smoothed before the hole-loop filling is performed. |
| bExceptLargestHole | [IN] Boolean Required. that has the biggest number of boundary vertices is filled or not. |
Remarks