]> SALOME platform Git repositories - modules/shaper.git/blob - src/BuildPlugin/doc/examples/vertex.py
Salome HOME
ea2979b7fc61956975c072e5bd72d27940177703
[modules/shaper.git] / src / BuildPlugin / doc / examples / vertex.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 Vertex_1_objects = [model.selection("VERTEX", "Box_1_1/Back&Box_1_1/Left&Box_1_1/Top"),
11                     model.selection("VERTEX", "Box_1_1/Front&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                     model.selection("VERTEX", "Box_1_1/Front&Box_1_1/Right&Box_1_1/Bottom")]
15 Vertex_1 = model.addVertex(Part_1_doc, Vertex_1_objects)
16 model.do()
17 model.end()