Salome HOME
93bb0ce86548719bd3407586a3aa73cd61050974
[modules/shaper.git] / src / FeaturesPlugin / doc / examples / pipe_binormal.py
1 # -*- coding: utf-8 -*-
2
3 from salome.shaper import model
4
5 model.begin()
6 partSet = model.moduleDocument()
7 Part_1 = model.addPart(partSet)
8 Part_1_doc = Part_1.document()
9 Sketch_1 = model.addSketch(Part_1_doc, model.defaultPlane("XOZ"))
10 SketchLine_1 = Sketch_1.addLine(72.2418524871355, 29.96679215537161, -69.82505995666611, 29.96679215537161)
11 SketchLine_2 = Sketch_1.addLine(-69.82505995666611, 29.96679215537161, -69.82505995666611, -40.02291624943114)
12 SketchLine_3 = Sketch_1.addLine(-69.82505995666611, -40.02291624943114, 72.2418524871355, -40.02291624943114)
13 SketchLine_4 = Sketch_1.addLine(72.2418524871355, -40.02291624943114, 72.2418524871355, 29.96679215537161)
14 SketchConstraintCoincidence_1 = Sketch_1.setCoincident(SketchLine_4.endPoint(), SketchLine_1.startPoint())
15 SketchConstraintCoincidence_2 = Sketch_1.setCoincident(SketchLine_1.endPoint(), SketchLine_2.startPoint())
16 SketchConstraintCoincidence_3 = Sketch_1.setCoincident(SketchLine_2.endPoint(), SketchLine_3.startPoint())
17 SketchConstraintCoincidence_4 = Sketch_1.setCoincident(SketchLine_3.endPoint(), SketchLine_4.startPoint())
18 SketchConstraintHorizontal_1 = Sketch_1.setHorizontal(SketchLine_1.result())
19 SketchConstraintVertical_1 = Sketch_1.setVertical(SketchLine_2.result())
20 SketchConstraintHorizontal_2 = Sketch_1.setHorizontal(SketchLine_3.result())
21 SketchConstraintVertical_2 = Sketch_1.setVertical(SketchLine_4.result())
22 model.do()
23 Point_2 = model.addPoint(Part_1_doc, 0, 100, 40)
24 Point_3 = model.addPoint(Part_1_doc, 0, 260, 60)
25 Interpolation_1_objects = [model.selection("VERTEX", "PartSet/Origin"), model.selection("VERTEX", "Point_1"), model.selection("VERTEX", "Point_2")]
26 Interpolation_1 = model.addInterpolation(Part_1_doc, Interpolation_1_objects, False, False)
27 Pipe_1 = model.addPipe(Part_1_doc, [model.selection("FACE", "Sketch_1/Face-SketchLine_1r-SketchLine_2f-SketchLine_3f-SketchLine_4f")], model.selection("EDGE", "Interpolation_1_1"), model.selection("EDGE", "PartSet/OX"))
28 model.do()
29 model.end()