]> SALOME platform Git repositories - modules/shaper.git/blob - src/ConstructionPlugin/doc/examples/plane.py
Salome HOME
Merge branch HELP_DOCUMENTATION_EDITING into master.
[modules/shaper.git] / src / ConstructionPlugin / doc / examples / plane.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 Plane_4 = model.addPlane(Part_1_doc,
11                          model.selection("VERTEX", "Box_1_1/Back&Box_1_1/Left&Box_1_1/Top"),
12                          model.selection("VERTEX", "Box_1_1/Front&Box_1_1/Right&Box_1_1/Top"),
13                          model.selection("VERTEX", "Box_1_1/Front&Box_1_1/Left&Box_1_1/Bottom"))
14 Plane_5 = model.addPlane(Part_1_doc, model.selection("EDGE", "Box_1_1/Left&Box_1_1/Top"),
15                          model.selection("VERTEX", "Box_1_1/Front&Box_1_1/Right&Box_1_1/Bottom"), False)
16 Plane_6 = model.addPlane(Part_1_doc, model.selection("FACE", "Box_1_1/Front"), 10, False)
17 Plane_7 = model.addPlane(Part_1_doc, model.selection("FACE", "Box_1_1/Left"),
18                          model.selection("FACE", "Box_1_1/Right"))
19 model.do()
20 model.end()