]> SALOME platform Git repositories - modules/shaper.git/blob - src/FeaturesPlugin/doc/examples/chamfer1.py
Salome HOME
Merge remote-tracking branch 'origin/EDF_2019'
[modules/shaper.git] / src / FeaturesPlugin / doc / examples / chamfer1.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, 20, 20, 20)
8 Chamfer_1 = model.addChamfer(Part_1_doc, [model.selection("FACE", "Box_1_1/Top")], True, 2, 2)
9 model.do()
10 model.end()