To produce a Partition in the Main Menu select Operations - > Partition
This operation builds a shape by intersection of two shapes or a shape and a plane.
The Result will be any GEOM_Object.
Intersection of two shapes.
As far as the intersection of two objects can produce any type of geometrical objects, Reconstruction Limit box allows to choose the preferrable result, i.e. a solid, a shell, a list of faces, etc.
TUI Command: geompy.MakePartition(ListOfShapes, ListOfTools, ListOfKeepInside, ListOfRemoveInside, Limit, RemoveWebs, ListOfMaterials), where ListOfShapes is a list of shapes to be intersected and ListOfTools is a list of shapes to intersect the shapes from ListOfShapes.
Since the implementation of a new version of PartitionAlgo other parameters are ignored by the current functionality and remain there only to support the old scripts.
Arguments: Name + 2 lists of shapes (the shapes from the first list will be intersected with the shapes from the second list) + reconstruction limit.
Intersection of a Shape and a Plane.
TUI Command geompy.MakeHalfPartition(Shape, Plane), where Shape is a Shape to be intersected and Plane is a Tool shape, to intersect the Shape.
Arguments: Name + 1 shape which will be intersected + 1 cutting face.
Example:
Our TUI Scripts provide you with useful examples of the use of Basic Operations.