MeshAssembly
A mesh assembly.
Example
app = cf.GetApplication() project = app:NewProject() -- Settings for normal meshing project.SolutionConfigurations[1].Frequency.Start = "1e06" -- Create geometry and mesh project.Geometry:AddSphere(cf.Point(0,0,0),1) project.Mesher:Mesh() sphereMesh = project.Geometry["Sphere1"]:UnlinkMesh() -- Create a 'MeshAssembly' meshAssembly = project.Meshes.Assemblies:Add() -- Add mesh to mesh assembly meshAssembly:AddMesh(sphereMesh)
Property List
Collection List
- Children
- The mesh operators in the assembly. (MeshAssemblyChildrenCollection of Mesh.)
Method List
- AddMesh (mesh Mesh)
- Adds the mesh operator to the assembly.
- Delete ()
- Deletes the assembly and the mesh contained in it.
- Disassemble ()
- Disassembles the assembly.
- RemoveMesh (mesh Mesh)
- Remove the mesh operator from the assembly.
Property Details
Collection Details
- Children
- The mesh operators in the assembly.
Method Details
- AddMesh (mesh Mesh)
- Adds the mesh operator to the assembly.
- Input Parameters
- mesh(Mesh)
- The mesh to add to the assembly.
- Delete ()
- Deletes the assembly and the mesh contained in it.
- Disassemble ()
- Disassembles the assembly.
- RemoveMesh (mesh Mesh)
- Remove the mesh operator from the assembly.
- Input Parameters
- mesh(Mesh)
- The mesh to remove from the assembly.