Description
Exports the texture of shell as image file with surface data.
Syntax
Function RFSurfaceTools.ExportQuadMesh( surfaceCount As Long, pSurfaceIDs As RFEntityID, shellID As RFEntityID, bPreserveRatio As Boolean, uRes As Long, vRes As Long, filePath As String ) As RFErrorCode
The ExportQuadMesh syntax has these parts:
| Part | Description |
|---|---|
| surfaceCount | [IN] Long Required. Number of surfaces to export texture of shell. |
| pSurfaceIDs | [IN] RFEntityID Required. Surface's RFEntityID array. |
| shellID | [IN] RFEntityID Required. Shell's RFEntityID. |
| bPreserveRatio | [IN] Boolean Required. It determines whether it preserves the aspect ratio or not. |
| uRes | [IN] Long Required. U-directional resolution of texture image. |
| vRes | [IN] Long Required. V-directional resolution of texture image. |
| filePath | [IN] String Required. File path where the image file saved. |
Remarks