Salome HOME
44e2816a94c3e5fb75dc9206a36e34c99d8f696b
[modules/shaper.git] / src / ExchangePlugin / doc / examples / export.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 Box_1 = model.addBox(Part_1_doc, 10, 10, 10)
10 Export_1 = model.exportToFile(Part_1_doc, "/dn48/newgeom/vsv/test.step",
11                               [model.selection("SOLID", "Box_1_1")])
12 model.do()
13 model.end()