MeshTriangleFaceCollection
A collection of faces meshed with 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 number of triangle faces in 'MeshTriangleFaceCollection' count = mesh.TriangleFaces.Count -- Get the label of the specified mesh entity label = mesh.TriangleFaces[1].Label
Usage locations
The MeshTriangleFaceCollection object can be accessed from the following locations:
- Collection lists
- Mesh object has collection TriangleFaces.
Property List
Method List
- Contains (label string)
- Checks if the collection contains an item with the given label. (Returns a boolean object.)
- Item (index number)
- Returns the MeshTriangleFace at the given index. (Returns a MeshTriangleFace object.)
- Item (label string)
- Returns the MeshTriangleFace with the given label. (Returns a MeshTriangleFace object.)
- Items ()
- Returns a table of MeshTriangleFace. (Returns a List of MeshTriangleFace object.)
- UniqueName (label string)
- Generates a unique name base of of the provided base name.If the base name already exists in the collection, a digit will be appended until a valid name is generated. (Returns a boolean object.)
Index List
- [number]
- Returns the MeshTriangleFace at the given index in the collection. (Read MeshTriangleFace)
- [string]
- Returns the MeshTriangleFace with the given name in the collection. (Read MeshTriangleFace)
Property Details
Method Details
- Contains (label string)
- Checks if the collection contains an item with the given label.
- Item (index number)
- Returns the MeshTriangleFace at the given index.
- Input Parameters
- index(number)
- The index of the MeshTriangleFace.
- Return
- MeshTriangleFace
- The MeshTriangleFace at the given index.
- Item (label string)
- Returns the MeshTriangleFace with the given label.
- Input Parameters
- label(string)
- The label of the MeshTriangleFace.
- Return
- MeshTriangleFace
- The MeshTriangleFace with the given label.
- Items ()
- Returns a table of MeshTriangleFace.
- Return
- List of MeshTriangleFace
- A table of MeshTriangleFace.
- UniqueName (label string)
- Generates a unique name base of of the provided base name.If the base name already exists in the collection, a digit will be appended until a valid name is generated.