]> SALOME platform Git repositories - modules/shaper.git/blob - src/PrimitivesPlugin/doc/examples/tube.py
Salome HOME
Add a new mode for creating a box by a center and dimensions. (TestBox.py)
[modules/shaper.git] / src / PrimitivesPlugin / doc / examples / tube.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 Torus_1 = model.addTube(Part_1_doc, 3, 5, 12)
8 model.do()
9 model.end()