MeshPolygon
A polygon in 3D space. A geometry polygon's mesh equivalent that can be directly interpreted by the solver (e.g. using the UTD solution method).
Example
app = pf.GetApplication() app:NewProject() app:OpenFile(FEKO_HOME..[[/shared/Resources/Automation/Dipole_Antenna_and_UTD_Plate.fek]]) mesh = app.Models["Dipole_Antenna_and_UTD_Plate"].Configurations[1].Mesh -- Get a 'MeshPolygon' of a specified mesh entity meshPolygon = mesh.UnmeshedPolygonFaces[1].Polygons[1] -- Get the 'VertexIndices' contained the 'MeshPolygon'. vertices = meshPolygon.VertexIndices
Property List
- Type
- The object type string. (Read only string)
- VertexIndices
- Returns a list of the vertex indices of the polygon. (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 polygon.
- Access
- Read only