]> SALOME platform Git repositories - modules/shaper.git/blob - src/ConstructionPlugin/doc/examples/plane2.py
Salome HOME
Remove coding information from the python scripts due to tuleap issue #16806
[modules/shaper.git] / src / ConstructionPlugin / doc / examples / plane2.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 Plane_4 = model.addPlane(Part_1_doc, model.selection("EDGE", "[Box_1_1/Front][Box_1_1/Left]"), model.selection("VERTEX", "[Box_1_1/Back][Box_1_1/Right][Box_1_1/Bottom]"), False)
9 model.do()
10 model.end()