Salome HOME
using a better solution to do compare doubles for shape physical properties
[modules/shaper.git] / src / ExchangePlugin / doc / examples / export_part.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 Cylinder_1 = model.addCylinder(Part_1_doc, model.selection("VERTEX", "PartSet/Origin"), model.selection("EDGE", "PartSet/OZ"), 5, 10)
8 Box_1 = model.addBox(Part_1_doc, 10, 10, 10)
9 Export_1 = model.exportPart(Part_1_doc, "~/box.shaperpart", [model.selection("SOLID", "Box_1_1")])
10 model.end()