Salome HOME
Remove coding information from the python scripts due to tuleap issue #16806
[modules/shaper.git] / src / FeaturesPlugin / doc / examples / extrusion_fuse_by_bounding_planes.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 ExtrusionFuse_1 = model.addExtrusionFuse(Part_1_doc,
9                                          [],
10                                          model.selection(),
11                                          model.selection("FACE", "Box_1_1/Bottom"),
12                                          0,
13                                          model.selection("FACE", "Box_1_1/Top"),
14                                          0,
15                                          [model.selection("SOLID", "Box_1_1")])
16 Sketch_1 = model.addSketch(Part_1_doc, model.selection("FACE", "Box_1_1/Top"))
17 SketchCircle_1 = Sketch_1.addCircle(5, 0, 2)
18 ExtrusionFuse_1.setNestedSketch(Sketch_1)
19 model.do()
20 model.end()