MeshCurvilinearSegment
A curvilinear segment in 3D space. Exists as part of a mesh.
Example
app = pf.GetApplication() app:NewProject() app:OpenFile(FEKO_HOME..[[/shared/Resources/Automation/Helix_dipole.fek]]) sConf = app.Models["Helix_dipole"].Configurations[1] mesh = sConf.Mesh meshCurvilinearWireSegment = mesh.CurvilinearSegmentWires[1] -- Get a 'MeshCurvilinearSegment' meshCurvilinearSegment = meshCurvilinearWireSegment.CurvilinearSegments[1] -- Query the index of the second vertex secondIndex = meshCurvilinearSegment.VertexIndices[2]
Property List
- Type
- The object type string. (Read only string)
- VertexIndices
- Returns a list of the vertex indices of the segment. The first two are the vertex indices at the segment end points and the third is the midpoint vertex index. (Read only List of number)
Property Details
- Type
- The object type string.
- Type
- string
- Access
- Read only
- VertexIndices
- Returns a list of the vertex indices of the segment. The first two are the vertex indices at the segment end points and the third is the midpoint vertex index.
- Access
- Read only