Salome HOME
Remove coding information from the python scripts due to tuleap issue #16806
[modules/shaper.git] / src / FeaturesPlugin / doc / examples / union.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 Sketch_1 = model.addSketch(Part_1_doc, model.defaultPlane("XOY"))
8 SketchLine_1 = Sketch_1.addLine(71, -15, -32, -15)
9 SketchLine_2 = Sketch_1.addLine(-32, -15, -32, -56)
10 SketchLine_3 = Sketch_1.addLine(-32, -56, 71, -56)
11 SketchLine_4 = Sketch_1.addLine(71, -56, 71, -15)
12 SketchConstraintCoincidence_1 = Sketch_1.setCoincident(SketchLine_4.endPoint(), SketchLine_1.startPoint())
13 SketchConstraintCoincidence_2 = Sketch_1.setCoincident(SketchLine_1.endPoint(), SketchLine_2.startPoint())
14 SketchConstraintCoincidence_3 = Sketch_1.setCoincident(SketchLine_2.endPoint(), SketchLine_3.startPoint())
15 SketchConstraintCoincidence_4 = Sketch_1.setCoincident(SketchLine_3.endPoint(), SketchLine_4.startPoint())
16 SketchConstraintHorizontal_1 = Sketch_1.setHorizontal(SketchLine_1.result())
17 SketchConstraintVertical_1 = Sketch_1.setVertical(SketchLine_2.result())
18 SketchConstraintHorizontal_2 = Sketch_1.setHorizontal(SketchLine_3.result())
19 SketchConstraintVertical_2 = Sketch_1.setVertical(SketchLine_4.result())
20 SketchLine_5 = Sketch_1.addLine(3, -15, 36, -56)
21 SketchConstraintCoincidence_5 = Sketch_1.setCoincident(SketchLine_5.startPoint(), SketchLine_1.result())
22 SketchConstraintCoincidence_6 = Sketch_1.setCoincident(SketchLine_5.endPoint(), SketchLine_3.result())
23 model.do()
24 Extrusion_1 = model.addExtrusion(Part_1_doc, [model.selection("FACE", "Sketch_1/Face-SketchLine_1r-SketchLine_2f-SketchLine_3f-SketchLine_5r"), model.selection("FACE", "Sketch_1/Face-SketchLine_1r-SketchLine_5f-SketchLine_3f-SketchLine_4f")], model.selection(), 10, 0)
25 Union_1 = model.addUnion(Part_1_doc, [model.selection("SOLID", "Extrusion_1_1_1"), model.selection("SOLID", "Extrusion_1_1_2")])
26 model.do()
27 model.end()