Unioning the Model
Union all geometry in the model (Feedline and Patch) and set its label to Union1.
myUnion = myProject.Contents.Geometry:Union() myUnion.Label = "Union1"

- The union operation is a geometry object and since there may be multiple geometry objects in the model, it is part of the GeometryCollection.
- Search for GeometryCollection in the Help1.
-
In the Help, under
, search for methods that are applicable to the union
operation:
- Union (geometrylist List of Geometry)
- Union ()
To union all geometry in the model, we will use the method:Union()
-
Determine the syntax to prepend to Union():
-
Add a reference to the newly created union:
myUnion = myProject.Contents.Geometry:Union()
-
Set the union label to Union1:
myUnion.Label = "Union1"
Tip: View the Union (object) in the Help for a short example.