MeshTriangleFace

A mesh entity representing a face meshed using triangles.

Example

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

    -- Get the label of the specified mesh entity
    
label = mesh.TriangleFaces[1].Label

    -- Get the triangle count of the specified mesh entity

faceTriangleCount = mesh.TriangleFaces[1].Triangles.Count

Inheritance

The MeshTriangleFace object is derived from the MeshEntity object.

Property List

Label
The object label. (Read only string)
Triangles
The collection of mesh triangles that form the mesh Triangle face. (Read only MeshTriangles)
Type
The object type string. (Read only string)

Property Details

Label
The object label.
Type
string
Access
Read only
Triangles
The collection of mesh triangles that form the mesh Triangle face.
Type
MeshTriangles
Access
Read only
Type
The object type string.
Type
string
Access
Read only