]> SALOME platform Git repositories - modules/shaper.git/blob - src/PartSetPlugin/doc/examples/new_part.py
Salome HOME
Merge branch HELP_DOCUMENTATION_EDITING into master.
[modules/shaper.git] / src / PartSetPlugin / doc / examples / new_part.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 model.do()
10 model.end()