GeometryAssemblyChildrenCollection
A collection of geometry operators in a geometry assembly.
Example
app = cf.GetApplication() project = app:NewProject() cuboid = project.Geometry:AddCuboid(cf.Point(0,0,0),1,1,1) assembly = project.Geometry.Assemblies:Add({cuboid}) assemblyChildren = assembly.Children -- Retrieve an assembly child item geometryItem = assemblyChildren:Item(cuboid.Label)
Usage locations (collections)
The following objects contain the GeometryAssemblyChildrenCollection 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 Geometry at the given index. (Returns a Geometry object.)
- Item (label string)
- Returns the Geometry with the given label. (Returns a Geometry object.)
- Items ()
- Returns a table of Geometry. (Returns a List of Geometry 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 Geometry at the given index.
- Item (label string)
- Returns the Geometry with the given label.
- Items ()
- Returns a table of Geometry.
- 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.