]> SALOME platform Git repositories - modules/shaper.git/blob - src/ExchangePlugin/doc/examples/export.py
Salome HOME
Ameliorate help pages
[modules/shaper.git] / src / ExchangePlugin / doc / examples / export.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 Export_1 = model.exportToFile(Part_1_doc, "/dn48/newgeom/vsv/test.step",
9                               [model.selection("SOLID", "Box_1_1")])
10 model.do()
11 model.end()