Description
Get the cross section between specified shell and cylinder.
Syntax
Function RFMeshTools.GetCylindricalCrossSectionOfShell(shellID As RFEntityID, pCylinder As RFCylinder, maxSectionLineCount As Long, pSectionLineCount As Long, pSectionLines As RFLine, maxLoopCount As Long, pLoopCount As Long, pLineCountInLoops As Long) As RFErrorCode
The GetCrossSectionOfShell syntax has these parts:
| Part | Description |
|---|---|
| shellID | [IN] RFEntityID Required. Shell's RFEntityID to be sectioned. |
| pCylinder | [IN] RFCylinder Required. RFCylinder used to be section a shell. |
| maxSectionLineCount | [IN] Long Required. The size of pSectionLines array. (Maximum number of section lines expected.) |
| pSectionLineCount | [OUT] Long Required. The number of section lines. |
| pSectionLines | [OUT] RFLine Required. Section lines between shell and cylinder. |
| maxLoopCount | [IN] Long Required. The size of pLineCountInLoops array. (Maximum number of loops expected.) |
| pLoopCount | [OUT] Long Required. The number of loops. |
| pLineCountInLoops | [OUT] Long Required. The number of section lines in each loop. |
Remarks