MeshTriangleFaceCollection

A collection of faces meshed with triangles.

Example

app = cf.GetApplication()
project = app:NewProject()

	-- Set the frequency
	
project.SolutionConfigurations[1].Frequency.Start = "1e06"

    -- Create geometry and mesh

project.Geometry:AddSphere(cf.Point(0,0,0),1.0)
project.Mesher:Mesh()
project.Geometry["Sphere1"]:UnlinkMesh()

    -- Obtain the 'MeshTriangleFaceCollection'

meshTriangleFaces = project.Meshes["Sphere1_1"].TriangleFaces

    -- Retrieve a specific face from the collection.

face = meshTriangleFaces["Face1"]

Usage locations (collections)

The following objects contain the MeshTriangleFaceCollection collection:

Property List

Count
The number of MeshTriangleFace items in the collection. (Read only number)
Type
The object type string. (Read only string)

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

Count
The number of MeshTriangleFace items in the collection.
Type
number
Access
Read only
Type
The object type string.
Type
string
Access
Read only

Method Details

Contains (label string)
Checks if the collection contains an item with the given label.
Input Parameters
label(string)
The label of the MeshTriangleFace.
Return
boolean
The success of the check.
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.
Input Parameters
label(string)
The base name.
Return
boolean
The generated unique name label for MeshTriangleFace.