]> SALOME platform Git repositories - modules/shaper.git/blob - src/ConstructionPlugin/doc/examples/point2.py
Salome HOME
Issue #2833: Update example scripts
[modules/shaper.git] / src / ConstructionPlugin / doc / examples / point2.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 Point_2 = model.addPoint(Part_1_doc, model.selection("EDGE", "[Box_1_1/Front][Box_1_1/Top]"), 0.4, True, False)
11 model.do()
12 model.end()