Salome HOME
Remove coding information from the python scripts due to tuleap issue #16806
[modules/shaper.git] / src / FeaturesPlugin / doc / examples / intersection.py
1 from salome.shaper import model
2
3 model.begin()
4 partSet = model.moduleDocument()
5 Part_1 = model.addPart(partSet)
6 Part_1_doc = Part_1.document()
7 Box_1 = model.addBox(Part_1_doc, 10, 10, 10)
8 Cylinder_1 = model.addCylinder(Part_1_doc,
9                                model.selection("VERTEX", "PartSet/Origin"),
10                                model.selection("EDGE", "PartSet/OZ"), 5, 10)
11 Intersection_1 = model.addIntersection(Part_1_doc,
12                                        [model.selection("SOLID", "Cylinder_1_1"),
13                                         model.selection("SOLID", "Box_1_1")])
14 model.do()
15 model.end()