]> SALOME platform Git repositories - modules/shaper.git/blob - src/PythonAPI/examples/MakeBrick1.py
Salome HOME
Issue #1648: Dump Python in the High Level Parameterized Geometry API
[modules/shaper.git] / src / PythonAPI / examples / MakeBrick1.py
1 # Creation of a box using the end-user API
2 # Author: Daniel Brunier-Coulin
3 # -----------------------------
4
5 import model
6
7
8 # Initialisation
9
10 model.begin()
11 mypartset = model.moduleDocument()
12
13
14 # Creating a new Part
15
16 mypart = model.addPart(mypartset).document()
17
18
19 # Creating the base of the box
20
21 mybase = model.addSketch(mypart, model.defaultPlane("XOY"))
22
23 l1 = mybase.addLine(0, 0, 0, 1)
24 l2 = mybase.addLine(0, 1, 1, 1)
25 l3 = mybase.addLine(1, 1, 1, 0)
26 l4 = mybase.addLine(1, 0, 0, 0)
27
28 mybase.setCoincident(l1.endPoint(), l2.startPoint())
29 mybase.setCoincident(l2.endPoint(), l3.startPoint())
30 mybase.setCoincident(l3.endPoint(), l4.startPoint())
31 mybase.setCoincident(l4.endPoint(), l1.startPoint())
32
33 mybase.setParallel(l1, l3)
34 mybase.setParallel(l2, l4)
35
36 mybase.setPerpendicular(l1, l4)
37
38 mybase.setVertical(l1)
39 mybase.setFixed(l1.startPoint())
40
41 mywidth = mybase.setLength(l1, 50)
42 mylength = mybase.setDistance(l1.startPoint(), l3, 50)
43
44 # Creating the extrusion
45
46 mybox = model.addExtrusion(mypart, mybase.selectFace(), 50)
47 model.do()
48
49 # Creating a cylinder on a face of the box
50
51 thisface = "Extrusion_1_1/Generated_Face_2"
52 thisxmax = "Extrusion_1_1/Generated_Face_3&Extrusion_1_1/Generated_Face_2"
53 thiszmax = "Extrusion_1_1/Generated_Face_2&Extrusion_1_1/To_Face_1_1"
54
55 mystand = model.addSketch(mypart, thisface)
56
57 c1 = mystand.addCircle(0, 25, 5)
58 l1 = mystand.addLine(thisxmax)
59 l2 = mystand.addLine(thiszmax)
60 model.do()
61 mystand.setDistance(c1.center(), l1, 10)
62 mystand.setDistance(c1.center(), l2, 10)
63 model.do()
64
65
66 myboss = model.addExtrusion(mypart, mystand.selectFace(), -5)
67
68 # Subtracting the cylinder to the box
69
70 model.addCut(mypart, mybox.result(), myboss.result())
71 model.end()
72
73
74 # Editing the box
75
76 model.begin()
77 mybase.setValue(mylength, 100)
78 model.do()
79 mybox.setSize(80)
80 model.end()
81
82 assert(model.checkPythonDump())