MeshAssemblyChildrenCollection
A collection of mesh operators in a mesh assembly.
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) meshAssembly = project.Meshes.Assemblies:Add() for i = 1,2 do project.Mesher:Mesh() sphereMesh = project.Geometry["Sphere1"]:UnlinkMesh() meshAssembly:AddMesh(sphereMesh) project.Mesher:Mesh() end -- Obtain a handle to 'MeshAssemblyChildrenCollection' meshAssemblyChildren = meshAssembly.Children -- Store the number of children in the assembly meshAssemblyChildrenCount = meshAssemblyChildren.Count
Usage locations (collections)
The following objects contain the MeshAssemblyChildrenCollection collection:
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 Mesh at the given index. (Returns a Mesh object.)
- Item (label string)
- Returns the Mesh with the given label. (Returns a Mesh object.)
- Items ()
- Returns a table of Mesh. (Returns a List of Mesh 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
Property Details
Method Details
- Contains (label string)
- Checks if the collection contains an item with the given label.
- Item (index number)
- Returns the Mesh at the given index.
- Item (label string)
- Returns the Mesh with the given label.
- Items ()
- Returns a table of Mesh.
- 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.