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.
TUI Command: geompy.MakePartition(ListOfShapes, ListOfTools, ListOfKeepInside, ListOfRemoveInside, Limit, RemoveWebs, ListOfMaterials), where ListOfShapes is a list of shapes to be intersected, ListOfTools is a list of shapes to intersect the shapes from ListOfShapes. Shapes from these two lists (for each separately) can not have intersections with each other. After implementation of a new version of PartitionAlgo (October 2006) other parameters are ignored by current functionality. They are kept in this function only for support of old scripts.
Arguments: Name + 2 shapes (the first shape will be intersected by the second shape) + 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.