Description
Fills hole-loops in the currently selected faces(region) with specified options and returns an RFErrorCode value indicating whether an error occurs.
Syntax
Function RFMeshTools.FillHolesRegion(vertexCount As Long, method As RFFillHoleMethod, bSmoothBoundary As Boolean, bExceptLargestHole As Boolean) As RFErrorCode
The FillHolesRegion syntax has these parts:
| Part | Description |
|---|---|
| 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. It determines whether the largest hole-loop that has the biggest number of boundary vertices is filled or not. |
Remarks