MeshSegment

A segment in 3D space. Exists as part of a mesh.

Example

app = pf.GetApplication()
app:NewProject()
app:OpenFile(FEKO_HOME..[[/shared/Resources/Automation/Dipole_Example.fek]])
mesh = app.Models["Dipole_Example"].Configurations[1].Mesh

    -- Get a 'MeshSegments' of a specified mesh entity

meshSegment = mesh.SegmentWires[1].Segments[1]

    -- Get the 'VertexIndices' contained the 'MeshSegments'.

vertices = meshSegment.VertexIndices

Property List

Type
The object type string. (Read only string)
VertexIndices
Returns a list of the vertex indices of the segment. (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.
Access
Read only