]> SALOME platform Git repositories - modules/shaper.git/blob - src/BuildPlugin/doc/examples/filling.py
Salome HOME
d912bd38746969f52e096ce033ac53871d38ad40
[modules/shaper.git] / src / BuildPlugin / doc / examples / filling.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 Edges = [model.selection("EDGE", "Box_1_1/Left&Box_1_1/Top"),
11          model.selection("EDGE", "Box_1_1/Front&Box_1_1/Top")]
12 Filling_1 = model.addFilling(Part_1_doc, Edges)
13 model.do()
14 model.end()