Salome HOME
8f48a1ee3796efbb36b204ee40bda523340060f0
[modules/shaper.git] / src / ConstructionPlugin / doc / examples / axis3.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 Axis_4 = model.addAxis(Part_1_doc, model.selection("EDGE", "PartSet/OY"))
10 model.do()
11 model.end()