Salome HOME
Update test for new version of PartitionAlgo.
[modules/geom.git] / src / GEOM_SWIG / GEOM_TestAll.py
1 #  GEOM GEOM_SWIG : binding of C++ omplementaion with Python
2 #
3 #  Copyright (C) 2003  CEA
4 #
5 #  This library is free software; you can redistribute it and/or
6 #  modify it under the terms of the GNU Lesser General Public
7 #  License as published by the Free Software Foundation; either
8 #  version 2.1 of the License.
9 #
10 #  This library is distributed in the hope that it will be useful,
11 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 #  Lesser General Public License for more details.
14 #
15 #  You should have received a copy of the GNU Lesser General Public
16 #  License along with this library; if not, write to the Free Software
17 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18 #
19 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #
21 #
22 #  File   : GEOM_usinggeom.py
23 #  Author : Damien COQUERET, Open CASCADE
24 #  Module : GEOM
25 #  $Header$
26
27 def TestAll (geompy, math):
28
29   #Create base Variables
30   nbtimes1  = 5      #Short
31   nbtimes2  = 5
32   mindeg = 2
33   maxdeg = 5
34   nbiter = 5
35   ShapeTypeFace = geompy.ShapeType["FACE"]
36   ShapeTypeEdge = geompy.ShapeType["EDGE"]
37   WantPlanarFace = 1 #True
38
39   radius  = 10.  #Double
40   radius1 = 100.
41   radius2 = 200.
42   height  = 200.
43   d1      = 10.
44   d2      = 10.
45   step1   = 250.
46   step2   = 250.
47   angle   = 45.
48   angle1  = angle * math.pi / 180
49   angle2  = 2 * angle1
50   factor  = 2.
51   tol3d   = 0.0001
52   tol2d   = 0.0001
53   weight  = 1000000.
54   waterdensity = 1.
55   meshingdeflection = 0.01
56   trimsize  = 1000.
57   precision = 0.00001
58
59   #Create base points
60   p0   = geompy.MakeVertex(0.  , 0.  , 0.  ) #(3 Doubles)->GEOM_Object_ptr
61   px   = geompy.MakeVertex(100., 0.  , 0.  )
62   py   = geompy.MakeVertex(0.  , 100., 0.  )
63   pz   = geompy.MakeVertex(0.  , 0.  , 100.)
64   pxyz = geompy.MakeVertex(100., 100., 100.)
65
66   p200 = geompy.MakeVertexWithRef(pxyz, 100., 100., 100.) #(GEOM_Object_ptr, 3 Doubles)->GEOM_Object_ptr
67
68   #Create base directions
69   vx   = geompy.MakeVector(p0, px) #(GEOM_Object_ptr, GEOM_Object_ptr)->GEOM_Object_ptr
70   vy   = geompy.MakeVector(p0, py)
71   vz   = geompy.MakeVector(p0, pz)
72   vxy  = geompy.MakeVector(px, py)
73
74   vxyz = geompy.MakeVectorDXDYDZ(100., 100., 100.) #(3 Doubles)->GEOM_Object_ptr
75
76   #Create local coordinate systems
77   cs1 = geompy.MakeMarker(50,50,50, 1,0,0, 0,1,0)
78   cs2 = geompy.MakeMarker(70,80,10, 1,0,1, 1,1,0)
79
80   #Create base geometry 2D
81   Line   = geompy.MakeLineTwoPnt(p0, pxyz)                  #(2 GEOM_Object_ptr)->GEOM_Object_ptr
82   Line1  = geompy.MakeLine(pz, vxy)                         #(2 GEOM_Object_ptr)->GEOM_Object_ptr
83   Plane  = geompy.MakePlane(pz, vxyz, trimsize)             #(2 GEOM_Object_ptr, Double)->GEOM_Object_ptr
84   Plane1 = geompy.MakePlaneThreePnt(px, pz, p200, trimsize) #(4 Doubles)->GEOM_Object_ptr
85
86   Arc      = geompy.MakeArc(py, pz, px)                   #(3 GEOM_Object_ptr)->GEOM_Object_ptr
87   Circle   = geompy.MakeCircle(p0, vz, radius1)           #(2 GEOM_Object_ptr, Double)->GEOM_Object_ptr
88   Circle1  = geompy.MakeCircleThreePnt(p0, pxyz, px)      #(3 GEOM_Object_ptr)->GEOM_Object_ptr
89   Ellipse  = geompy.MakeEllipse(p0, vy, radius2, radius1) #(2 GEOM_Object_ptr, 2 Doubles)->GEOM_Object_ptr
90   Polyline = geompy.MakePolyline([p0, pz, py, p200])      #(List of GEOM_Object_ptr)->GEOM_Object_ptr
91   Bezier   = geompy.MakeBezier([p0, pz, p200, px])        #(List of GEOM_Object_ptr)->GEOM_Object_ptr
92   Interpol = geompy.MakeInterpol([px, py, p200, pxyz])    #(List of GEOM_Object_ptr)->GEOM_Object_ptr
93   Sketcher = geompy.MakeSketcher("Sketcher:F -100 -100:TT 250 -100:R 0:C 100 150:R 0:L 300:WW",
94                                  [100,0,0, 1,1,1, -1,1,0]) #(String, List of Doubles)->GEOM_Object_ptr
95
96   #Test point on curve creation
97   p_on_arc = geompy.MakeVertexOnCurve(Arc, 0.25) #(GEOM_Object_ptr, Double)->GEOM_Object_ptr
98
99   #Create base geometry 3D
100   Box      = geompy.MakeBoxTwoPnt(p0, p200)                   #(2 GEOM_Object_ptr)->GEOM_Object_ptr
101   Box1     = geompy.MakeBoxDXDYDZ(10, 20, 30)                 #(3 Doubles)->GEOM_Object_ptr
102   Box2     = geompy.MakeBox(10,20,30, 15,25,35)               #(6 Doubles)->GEOM_Object_ptr
103   Cylinder = geompy.MakeCylinder(p0, vz, radius1, height)     #(2 GEOM_Object_ptr, 2 Doubles)->GEOM_Object_ptr
104   Cyl1     = geompy.MakeCylinderRH(radius2, height)           #(2 Doubles)->GEOM_Object_ptr
105   Sphere   = geompy.MakeSpherePntR(p0, radius1)               #(GEOM_Object_ptr, Double)->GEOM_Object_ptr
106   Sphere1  = geompy.MakeSphereR(radius)                       #(Double)->GEOM_Object_ptr
107   Sphere2  = geompy.MakeSphere(50, 70, 30, radius)            #(4 Doubles)->GEOM_Object_ptr
108   Cone     = geompy.MakeCone(p0, vz, radius2, radius, height) #(2 GEOM_Object_ptr, 3 Doubles)->GEOM_Object_ptr
109   Cone1    = geompy.MakeConeR1R2H(radius1, radius, height)    #(3 Doubles)->GEOM_Object_ptr
110   Torus    = geompy.MakeTorus(p0, vz, radius2, radius)        #(2 GEOM_Object_ptr, 2 Doubles)->GEOM_Object_ptr
111   Torus1   = geompy.MakeTorusRR(radius2, radius1)             #(2 Doubles)->GEOM_Object_ptr
112
113   #Boolean (Common, Cut, Fuse, Section)
114   Common  = geompy.MakeBoolean(Box, Sphere, 1) #(2 GEOM_Object_ptr, Short)->GEOM_Object_ptr
115   Cut     = geompy.MakeBoolean(Box, Sphere, 2)
116   Fuse    = geompy.MakeBoolean(Box, Sphere, 3)
117   Section = geompy.MakeBoolean(Box, Sphere, 4)
118
119   #Create base objects
120   Edge     = geompy.MakeEdge(p0, pxyz)               #(2 GEOM_Object_ptr)->GEOM_Object_ptr
121   Wire     = geompy.MakeWire([vxy, Arc])             #(List Of GEOM_Object_ptr)->GEOM_Object_ptr
122   Face     = geompy.MakeFace(Wire, WantPlanarFace)   #(GEOM_Object_ptr, Boolean)->GEOM_Object_ptr
123   Face1    = geompy.MakeFaceWires([Wire, Sketcher],
124                                   WantPlanarFace)    #(List of GEOM_Object_ptr, Boolean)->GEOM_Object_ptr
125   Face2    = geompy.MakeFace(Sketcher, WantPlanarFace)
126   Shell    = geompy.MakeShell([Face, Face1])         #(List of GEOM_Object_ptr)->GEOM_Object_ptr
127
128   Prism1   = geompy.MakePrism(Face2, p0, pxyz)       #(3 GEOM_Object_ptr)->GEOM_Object_ptr
129   prism1_faces = geompy.SubShapeAllSorted(Prism1, ShapeTypeFace)
130   Shell1   = geompy.MakeShell([prism1_faces[0], prism1_faces[1],
131                                prism1_faces[3], prism1_faces[4],
132                                prism1_faces[5], prism1_faces[2]])
133   Solid    = geompy.MakeSolid([Shell1])              #(List of GEOM_Object_ptr)->GEOM_Object_ptr
134
135   ShapeListCompound = []
136   i = 0
137   while i <= 3 :
138         S = geompy.MakeTranslation(Arc, i * 100., i * 100., i * 100.)
139         ShapeListCompound.append(S)
140         i = i + 1
141   Compound = geompy.MakeCompound(ShapeListCompound)  #(List of GEOM_Object_ptr)->GEOM_Object_ptr
142
143   # Test plane from existing face creation
144   Plane2 = geompy.MakePlaneFace(Face, trimsize)      #(GEOM_Object_ptr, Double)->GEOM_Object_ptr
145
146   #ShapeList for Sewing
147   S = geompy.MakeRotation(Face, vxy, angle1)
148
149   #Create advanced objects
150   Copy       = geompy.MakeCopy(Box)                      #(GEOM_Object_ptr)->GEOM_Object_ptr
151   Prism      = geompy.MakePrismVecH(Face, vz, 100.0)     #(2 GEOM_Object_ptr, Double)->GEOM_Object_ptr
152   Revolution = geompy.MakeRevolution(Face, vz, angle2)   #
153   Filling    = geompy.MakeFilling(Compound, mindeg, maxdeg,
154                                   tol2d, tol3d, nbiter)  #(GEOM_Object_ptr, 4 Doubles, Short)->GEOM_Object_ptr
155   Pipe       = geompy.MakePipe(Wire, Edge)               #(2 GEOM_Object_ptr)->GEOM_Object_ptr
156   Sewing     = geompy.MakeSewing([Face, S], precision)   #(List Of GEOM_Object_ptr, Double)->GEOM_Object_ptr
157
158   #Transform objects
159   Translation = geompy.MakeTranslationTwoPoints(Box, px, pz)    #(3 GEOM_Object_ptr)->GEOM_Object_ptr
160   TranslVect  = geompy.MakeTranslationVector(Box, vxyz)         #(2 GEOM_Object_ptr)->GEOM_Object_ptr
161   Rotation    = geompy.MakeRotation(Box, vz, angle1)            #(2 GEOM_Object_ptr, Double)->GEOM_Object_ptr
162   RotatPnt    = geompy.MakeRotationThreePoints(Box, px, py, pz) #(4 GEOM_Object_ptr)->GEOM_Object_ptr
163   Scale       = geompy.MakeScaleTransform(Box, p0, factor)      #
164   Mirror      = geompy.MakeMirrorByPlane(Box, Plane)            #(2 GEOM_Object_ptr)->GEOM_Object_ptr
165   MirrorAxis  = geompy.MakeMirrorByAxis(Box, Line1)             #
166   MirrorPnt   = geompy.MakeMirrorByPoint(Box, p200)             #
167   Position    = geompy.MakePosition(Box, cs1, cs2)              #(3 GEOM_Object_ptr)->GEOM_Object_ptr
168   Offset      = geompy.MakeOffset(Box, 10.)                     #(GEOM_Object_ptr, Double)->GEOM_Object_ptr
169   Orientation = geompy.ChangeOrientation(Box)
170
171   #IDList for Fillet/Chamfer
172   prism_edges = geompy.SubShapeAllSorted(Prism, ShapeTypeEdge)
173
174   for anEdge in prism_edges:
175     eid = geompy.GetSubShapeID(Prism, anEdge)
176     sse = geompy.GetSubShape(Prism, [eid])
177
178     sse_id = geompy.GetSubShapeID(Prism, sse)
179     if sse_id != eid:
180       print "Error: GetSubShape() or GetSubShapeID() has failed!"
181
182   IDlist_e = []
183   IDlist_e.append(geompy.GetSubShapeID(Prism, prism_edges[0]))
184   IDlist_e.append(geompy.GetSubShapeID(Prism, prism_edges[1]))
185   IDlist_e.append(geompy.GetSubShapeID(Prism, prism_edges[2]))
186
187   prism_faces = geompy.SubShapeAllSorted(Prism, ShapeTypeFace)
188
189   f_ind_1 = geompy.GetSubShapeID(Prism, prism_faces[0])
190   f_ind_2 = geompy.GetSubShapeID(Prism, prism_faces[1])
191
192   IDlist_f = [f_ind_1, f_ind_2]
193
194   #Local operations
195   Fillet   = geompy.MakeFillet (Prism, radius, ShapeTypeEdge,
196                                 IDlist_e) #(GEOM_Object_ptr, Double, Short, ListOfLong)->GEOM_Object_ptr
197   Chamfer  = geompy.MakeChamferEdge(Prism, d1, d2,
198                                     f_ind_1, f_ind_2) #(GEOM_Object_ptr, 2 Doubles, 2 Long)->GEOM_Object_ptr
199   Chamfer2 = geompy.MakeChamferFaces(Prism, d1, d2,
200                                      IDlist_f) #(GEOM_Object_ptr, 2 Doubles, ListOfLong)->GEOM_Object_ptr
201
202   #Create Patterns
203   MultiTrans1D = geompy.MakeMultiTranslation1D(Fillet, vz, step1, nbtimes1)
204   MultiTrans2D = geompy.MakeMultiTranslation2D(Fillet, vz, step1, nbtimes1, vy, step2, nbtimes2)
205   #!!!!Angle In Degree!!!!
206   MultiRot1D   = geompy.MultiRotate1D(Chamfer, vx, nbtimes1)
207   MultiRot2D   = geompy.MultiRotate2D(Chamfer, vx, angle, nbtimes1, step1, nbtimes2)
208
209   #Create Informations objects
210   CDG        = geompy.MakeCDG(Prism)               #(GEOM_Object_ptr)->GEOM_Object_ptr
211   Archimede  = geompy.Archimede(Box, weight, waterdensity,
212                                 meshingdeflection) #(GEOM_Object_ptr, 3 Doubles)->GEOM_Object_ptr
213   CheckShape = geompy.CheckShape(Prism)            #(GEOM_Object_ptr)->Boolean
214   print "CheckShape(Prism) = ", CheckShape
215
216   #Partition objects
217   Partition  = geompy.MakePartition([Box], [Plane]) #(2 Lists Of GEOM_Object_ptr)->GEOM_Object_ptr
218   Partition1 = geompy.MakeHalfPartition(Box, Plane) #(2 GEOM_Object_ptr)->GEOM_Object_ptr
219
220   #Add In Study
221
222   id_p0   = geompy.addToStudy(p0,   "Vertex 0")
223   id_px   = geompy.addToStudy(px,   "Vertex X")
224   id_py   = geompy.addToStudy(py,   "Vertex Y")
225   id_pz   = geompy.addToStudy(pz,   "Vertex Z")
226   id_pxyz = geompy.addToStudy(pxyz, "Vertex XYZ")
227   id_p200 = geompy.addToStudy(p200, "Vertex 200")
228
229   id_vx   = geompy.addToStudy(vx,   "Vector X")
230   id_vy   = geompy.addToStudy(vy,   "Vector Y")
231   id_vz   = geompy.addToStudy(vz,   "Vector Z")
232   id_vxy  = geompy.addToStudy(vxy,  "Vector XY")
233   id_vxyz = geompy.addToStudy(vxyz, "Vector XYZ")
234
235   id_cs1 = geompy.addToStudy(cs1, "CS 50,50,50, 1,0,0, 0,1,0")
236   id_cs2 = geompy.addToStudy(cs2, "CS 70,80,10, 1,0,1, 1,1,0")
237
238   id_Line   = geompy.addToStudy(Line,   "Line")
239   id_Line1  = geompy.addToStudy(Line1,  "Line by point and vector")
240   id_Plane  = geompy.addToStudy(Plane,  "Plane")
241   id_Plane1 = geompy.addToStudy(Plane1,  "Plane by 3 points")
242
243   id_Arc      = geompy.addToStudy(Arc,      "Arc")
244   id_Circle   = geompy.addToStudy(Circle,   "Circle")
245   id_Circle1  = geompy.addToStudy(Circle1,  "Circle by 3 points")
246   id_Ellipse  = geompy.addToStudy(Ellipse,  "Ellipse")
247   id_Polyline = geompy.addToStudy(Polyline, "Polyline")
248   id_Bezier   = geompy.addToStudy(Bezier,   "Bezier")
249   id_Interpol = geompy.addToStudy(Interpol, "Interpol")
250   id_Sketcher = geompy.addToStudy(Sketcher, "Sketcher")
251
252   id_p_on_arc = geompy.addToStudy(p_on_arc, "Vertex on Arc")
253
254   id_Box      = geompy.addToStudy(Box,      "Box")
255   id_Box1     = geompy.addToStudy(Box1,     "Box 10x20x30")
256   id_Box2     = geompy.addToStudy(Box2,     "Box (10,20,30)-(15,25,35)")
257   id_Cylinder = geompy.addToStudy(Cylinder, "Cylinder")
258   id_Cyl1     = geompy.addToStudy(Cyl1,     "Cylinder RH")
259   id_Sphere   = geompy.addToStudy(Sphere,   "Sphere Pnt R")
260   id_Sphere1  = geompy.addToStudy(Sphere1,  "Sphere R")
261   id_Sphere2  = geompy.addToStudy(Sphere2,  "Sphere")
262   id_Cone     = geompy.addToStudy(Cone,     "Cone")
263   id_Cone1    = geompy.addToStudy(Cone1,    "Cone R1R2H")
264   id_Torus    = geompy.addToStudy(Torus,    "Torus")
265   id_Torus1   = geompy.addToStudy(Torus1,   "Torus RR")
266
267   id_Common  = geompy.addToStudy(Common,  "Common")
268   id_Cut     = geompy.addToStudy(Cut,     "Cut")
269   id_Fuse    = geompy.addToStudy(Fuse,    "Fuse")
270   id_Section = geompy.addToStudy(Section, "Section")
271
272   id_Edge     = geompy.addToStudy(Edge,     "Edge")
273   id_Wire     = geompy.addToStudy(Wire,     "Wire")
274   id_Face     = geompy.addToStudy(Face,     "Face")
275   id_Face1    = geompy.addToStudy(Face1,    "Face from two wires")
276   id_Face2    = geompy.addToStudy(Face2,    "Face from Sketcher")
277   id_Shell    = geompy.addToStudy(Shell,    "Shell")
278
279   id_Prism1   = geompy.addToStudy(Prism1,     "Prism by Two Pnt")
280   id_Shell1   = geompy.addToStudy(Shell1,   "Shell from Prism1 faces")
281   id_Solid    = geompy.addToStudy(Solid,    "Solid")
282   id_Compound = geompy.addToStudy(Compound, "Compound")
283
284   id_Plane2   = geompy.addToStudy(Plane2,   "Plane on Face")
285
286   id_Copy       = geompy.addToStudy(Copy,       "Copy")
287   id_Prism      = geompy.addToStudy(Prism,      "Prism")
288   id_Revolution = geompy.addToStudy(Revolution, "Revolution")
289   id_Filling    = geompy.addToStudy(Filling,    "Filling")
290   id_Pipe       = geompy.addToStudy(Pipe,       "Pipe")
291   id_Sewing     = geompy.addToStudy(Sewing,     "Sewing")
292
293   id_Translation = geompy.addToStudy(Translation, "Translation")
294   id_TranslVect  = geompy.addToStudy(TranslVect , "Translation along vector")
295   id_Rotation    = geompy.addToStudy(Rotation,    "Rotation")
296   id_RotatPnt    = geompy.addToStudy(RotatPnt,    "Rotation by three points")
297   id_Scale       = geompy.addToStudy(Scale,       "Scale")
298   id_Mirror      = geompy.addToStudy(Mirror,      "Mirror by Plane")
299   id_MirrorAxis  = geompy.addToStudy(MirrorAxis,  "Mirror by Axis")
300   id_MirrorPnt   = geompy.addToStudy(MirrorPnt,   "Mirror by Point")
301   id_Position    = geompy.addToStudy(Position,    "Positioned box")
302   id_Offset      = geompy.addToStudy(Offset,      "Offset")
303   id_Orientation = geompy.addToStudy(Orientation, "Orientation")
304
305   id_Fillet   = geompy.addToStudy(Fillet,   "Fillet")
306   id_Chamfer  = geompy.addToStudy(Chamfer,  "Chamfer on Edge")
307   id_Chamfer2 = geompy.addToStudy(Chamfer2, "Chamfer on Faces")
308
309   id_MultiTrans1D = geompy.addToStudy(MultiTrans1D, "MultiTrans1D")
310   id_MultiTrans2D = geompy.addToStudy(MultiTrans2D, "MultiTrans2D")
311   id_MultiRot1D   = geompy.addToStudy(MultiRot1D,   "MultiRot1D")
312   id_MultiRot2D   = geompy.addToStudy(MultiRot2D,   "MultiRot2D")
313
314   id_CDG       = geompy.addToStudy(CDG,       "CDG")
315   id_Archimede = geompy.addToStudy(Archimede, "Archimede")
316
317   id_Partition  = geompy.addToStudy(Partition, "Partition")
318   id_Partition1 = geompy.addToStudy(Partition1, "Half Partition")
319
320   #Decompose objects
321   SubFace    = geompy.SubShape(Box, geompy.ShapeType["FACE"], [2])
322   name       = geompy.SubShapeName(SubFace, Box)
323   id_SubFace = geompy.addToStudyInFather(Box, SubFace, name)
324
325   SubFaceS   = geompy.SubShapeSorted(Box, geompy.ShapeType["FACE"], [5])
326   nameS      = geompy.SubShapeName(SubFaceS, Box)
327   id_SubFace = geompy.addToStudyInFather(Box, SubFaceS, nameS)
328
329   SubEdgeList = geompy.SubShapeAll(SubFace, geompy.ShapeType["EDGE"])
330   i=0
331   for SubEdge in SubEdgeList :
332     name = geompy.SubShapeName(SubEdge, SubFace)
333     id_SubEdge = geompy.addToStudyInFather(SubFace, SubEdge, name)
334
335   #-------------------
336
337   print "DONE"