Description
Deforms a shell by the specified curve.
Syntax
Function RFMeshTools.DeformShellByCurve(shellID As RFEntityID, curveID As RFEntityID, iFaceCount As Long, pFaceIDs As RFEntityID, bUseBrush As Boolean, dBrushSize As Double) As RFErrorCode
The DeformShellByCurve syntax has these parts:
| Part | Description |
|---|---|
| shellID | [IN] RFEntityID Required. Entity ID of a shell. |
| curveID | [IN] RFEntityID Required. NURBS curve's entity ID. |
| iFaceCount | [IN] Long Required. The size of pFaceIDs array. (Number of faces to be deformed.) |
| pFaceIDs | [IN] RFEntityID Required. The first element of RFEntityID array to be deformed. |
| bUseBrush | [IN] Boolean Required. It determines whether input faces are deformed by brush or coordinate manipulator. |
| dBrushSize | [IN] Double Required. The diameter of brush sphere. |
Remarks