Salome HOME
Merge with OCC_development_01
[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.org
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   Scale       = geompy.MakeScaleTransform(Box, p0, factor)    #
163   Mirror      = geompy.MakeMirrorByPlane(Box, Plane)          #(2 GEOM_Object_ptr)->GEOM_Object_ptr
164   MirrorAxis  = geompy.MakeMirrorByAxis(Box, Line1)           #
165   MirrorPnt   = geompy.MakeMirrorByPoint(Box, p200)           #
166   Position    = geompy.MakePosition(Box, cs1, cs2)            #(3 GEOM_Object_ptr)->GEOM_Object_ptr
167   Offset      = geompy.MakeOffset(Box, 10.)                   #(GEOM_Object_ptr, Double)->GEOM_Object_ptr
168   Orientation = geompy.ChangeOrientation(Box)
169
170   #IDList for Fillet/Chamfer
171   prism_edges = geompy.SubShapeAllSorted(Prism, ShapeTypeEdge)
172
173   for anEdge in prism_edges:
174     eid = geompy.GetSubShapeID(Prism, anEdge)
175     sse = geompy.GetSubShape(Prism, [eid])
176
177     sse_id = geompy.GetSubShapeID(Prism, sse)
178     if sse_id != eid:
179       print "Error: GetSubShape() or GetSubShapeID() has failed!"
180
181   IDlist_e = []
182   IDlist_e.append(geompy.GetSubShapeID(Prism, prism_edges[0]))
183   IDlist_e.append(geompy.GetSubShapeID(Prism, prism_edges[1]))
184   IDlist_e.append(geompy.GetSubShapeID(Prism, prism_edges[2]))
185
186   prism_faces = geompy.SubShapeAllSorted(Prism, ShapeTypeFace)
187
188   f_ind_1 = geompy.GetSubShapeID(Prism, prism_faces[0])
189   f_ind_2 = geompy.GetSubShapeID(Prism, prism_faces[1])
190
191   IDlist_f = [f_ind_1, f_ind_2]
192
193   #Local operations
194   Fillet   = geompy.MakeFillet (Prism, radius, ShapeTypeEdge,
195                                 IDlist_e) #(GEOM_Object_ptr, Double, Short, ListOfLong)->GEOM_Object_ptr
196   Chamfer  = geompy.MakeChamferEdge(Prism, d1, d2,
197                                     f_ind_1, f_ind_2) #(GEOM_Object_ptr, 2 Doubles, 2 Long)->GEOM_Object_ptr
198   Chamfer2 = geompy.MakeChamferFaces(Prism, d1, d2,
199                                      IDlist_f) #(GEOM_Object_ptr, 2 Doubles, ListOfLong)->GEOM_Object_ptr
200
201   #Create Patterns
202   MultiTrans1D = geompy.MakeMultiTranslation1D(Fillet, vz, step1, nbtimes1)
203   MultiTrans2D = geompy.MakeMultiTranslation2D(Fillet, vz, step1, nbtimes1, vy, step2, nbtimes2)
204   #!!!!Angle In Degree!!!!
205   MultiRot1D   = geompy.MultiRotate1D(Chamfer, vx, nbtimes1)
206   MultiRot2D   = geompy.MultiRotate2D(Chamfer, vx, angle, nbtimes1, step1, nbtimes2)
207
208   #Create Informations objects
209   CDG        = geompy.MakeCDG(Prism)               #(GEOM_Object_ptr)->GEOM_Object_ptr
210   Archimede  = geompy.Archimede(Box, weight, waterdensity,
211                                 meshingdeflection) #(GEOM_Object_ptr, 3 Doubles)->GEOM_Object_ptr
212   CheckShape = geompy.CheckShape(Prism)            #(GEOM_Object_ptr)->Boolean
213   print "CheckShape(Prism) = ", CheckShape
214
215   #Partition objects
216   Partition  = geompy.MakePartition([Box], [Plane]) #(2 Lists Of GEOM_Object_ptr)->GEOM_Object_ptr
217   Partition1 = geompy.MakeHalfPartition(Box, Plane) #(2 GEOM_Object_ptr)->GEOM_Object_ptr
218
219   #Add In Study
220
221   id_p0   = geompy.addToStudy(p0,   "Vertex 0")
222   id_px   = geompy.addToStudy(px,   "Vertex X")
223   id_py   = geompy.addToStudy(py,   "Vertex Y")
224   id_pz   = geompy.addToStudy(pz,   "Vertex Z")
225   id_pxyz = geompy.addToStudy(pxyz, "Vertex XYZ")
226   id_p200 = geompy.addToStudy(p200, "Vertex 200")
227
228   id_vx   = geompy.addToStudy(vx,   "Vector X")
229   id_vy   = geompy.addToStudy(vy,   "Vector Y")
230   id_vz   = geompy.addToStudy(vz,   "Vector Z")
231   id_vxy  = geompy.addToStudy(vxy,  "Vector XY")
232   id_vxyz = geompy.addToStudy(vxyz, "Vector XYZ")
233
234   id_cs1 = geompy.addToStudy(cs1, "CS 50,50,50, 1,0,0, 0,1,0")
235   id_cs2 = geompy.addToStudy(cs2, "CS 70,80,10, 1,0,1, 1,1,0")
236
237   id_Line   = geompy.addToStudy(Line,   "Line")
238   id_Line1  = geompy.addToStudy(Line1,  "Line by point and vector")
239   id_Plane  = geompy.addToStudy(Plane,  "Plane")
240   id_Plane1 = geompy.addToStudy(Plane1,  "Plane by 3 points")
241
242   id_Arc      = geompy.addToStudy(Arc,      "Arc")
243   id_Circle   = geompy.addToStudy(Circle,   "Circle")
244   id_Circle1  = geompy.addToStudy(Circle1,  "Circle by 3 points")
245   id_Ellipse  = geompy.addToStudy(Ellipse,  "Ellipse")
246   id_Polyline = geompy.addToStudy(Polyline, "Polyline")
247   id_Bezier   = geompy.addToStudy(Bezier,   "Bezier")
248   id_Interpol = geompy.addToStudy(Interpol, "Interpol")
249   id_Sketcher = geompy.addToStudy(Sketcher, "Sketcher")
250
251   id_p_on_arc = geompy.addToStudy(p_on_arc, "Vertex on Arc")
252
253   id_Box      = geompy.addToStudy(Box,      "Box")
254   id_Box1     = geompy.addToStudy(Box1,     "Box 10x20x30")
255   id_Box2     = geompy.addToStudy(Box2,     "Box (10,20,30)-(15,25,35)")
256   id_Cylinder = geompy.addToStudy(Cylinder, "Cylinder")
257   id_Cyl1     = geompy.addToStudy(Cyl1,     "Cylinder RH")
258   id_Sphere   = geompy.addToStudy(Sphere,   "Sphere Pnt R")
259   id_Sphere1  = geompy.addToStudy(Sphere1,  "Sphere R")
260   id_Sphere2  = geompy.addToStudy(Sphere2,  "Sphere")
261   id_Cone     = geompy.addToStudy(Cone,     "Cone")
262   id_Cone1    = geompy.addToStudy(Cone1,    "Cone R1R2H")
263   id_Torus    = geompy.addToStudy(Torus,    "Torus")
264   id_Torus1   = geompy.addToStudy(Torus1,   "Torus RR")
265
266   id_Common  = geompy.addToStudy(Common,  "Common")
267   id_Cut     = geompy.addToStudy(Cut,     "Cut")
268   id_Fuse    = geompy.addToStudy(Fuse,    "Fuse")
269   id_Section = geompy.addToStudy(Section, "Section")
270
271   id_Edge     = geompy.addToStudy(Edge,     "Edge")
272   id_Wire     = geompy.addToStudy(Wire,     "Wire")
273   id_Face     = geompy.addToStudy(Face,     "Face")
274   id_Face1    = geompy.addToStudy(Face1,    "Face from two wires")
275   id_Face2    = geompy.addToStudy(Face2,    "Face from Sketcher")
276   id_Shell    = geompy.addToStudy(Shell,    "Shell")
277
278   id_Prism1   = geompy.addToStudy(Prism1,     "Prism by Two Pnt")
279   id_Shell1   = geompy.addToStudy(Shell1,   "Shell from Prism1 faces")
280   id_Solid    = geompy.addToStudy(Solid,    "Solid")
281   id_Compound = geompy.addToStudy(Compound, "Compound")
282
283   id_Plane2   = geompy.addToStudy(Plane2,   "Plane on Face")
284
285   id_Copy       = geompy.addToStudy(Copy,       "Copy")
286   id_Prism      = geompy.addToStudy(Prism,      "Prism")
287   id_Revolution = geompy.addToStudy(Revolution, "Revolution")
288   id_Filling    = geompy.addToStudy(Filling,    "Filling")
289   id_Pipe       = geompy.addToStudy(Pipe,       "Pipe")
290   id_Sewing     = geompy.addToStudy(Sewing,     "Sewing")
291
292   id_Translation = geompy.addToStudy(Translation, "Translation")
293   id_TranslVect  = geompy.addToStudy(TranslVect , "Translation along vector")
294   id_Rotation    = geompy.addToStudy(Rotation,    "Rotation")
295   id_Scale       = geompy.addToStudy(Scale,       "Scale")
296   id_Mirror      = geompy.addToStudy(Mirror,      "Mirror by Plane")
297   id_MirrorAxis  = geompy.addToStudy(MirrorAxis,  "Mirror by Axis")
298   id_MirrorPnt   = geompy.addToStudy(MirrorPnt,   "Mirror by Point")
299   id_Position    = geompy.addToStudy(Position,    "Positioned box")
300   id_Offset      = geompy.addToStudy(Offset,      "Offset")
301   id_Orientation = geompy.addToStudy(Orientation, "Orientation")
302
303   id_Fillet   = geompy.addToStudy(Fillet,   "Fillet")
304   id_Chamfer  = geompy.addToStudy(Chamfer,  "Chamfer on Edge")
305   id_Chamfer2 = geompy.addToStudy(Chamfer2, "Chamfer on Faces")
306
307   id_MultiTrans1D = geompy.addToStudy(MultiTrans1D, "MultiTrans1D")
308   id_MultiTrans2D = geompy.addToStudy(MultiTrans2D, "MultiTrans2D")
309   id_MultiRot1D   = geompy.addToStudy(MultiRot1D,   "MultiRot1D")
310   id_MultiRot2D   = geompy.addToStudy(MultiRot2D,   "MultiRot2D")
311
312   id_CDG       = geompy.addToStudy(CDG,       "CDG")
313   id_Archimede = geompy.addToStudy(Archimede, "Archimede")
314
315   id_Partition  = geompy.addToStudy(Partition, "Partition")
316   id_Partition1 = geompy.addToStudy(Partition1, "Half Partition")
317
318   #Decompose objects
319   SubFace    = geompy.SubShape(Box, geompy.ShapeType["FACE"], [2])
320   name       = geompy.SubShapeName(SubFace, Box)
321   id_SubFace = geompy.addToStudyInFather(Box, SubFace, name)
322
323   SubFaceS   = geompy.SubShapeSorted(Box, geompy.ShapeType["FACE"], [5])
324   nameS      = geompy.SubShapeName(SubFaceS, Box)
325   id_SubFace = geompy.addToStudyInFather(Box, SubFaceS, nameS)
326
327   SubEdgeList = geompy.SubShapeAll(SubFace, geompy.ShapeType["EDGE"])
328   i=0
329   for SubEdge in SubEdgeList :
330     name = geompy.SubShapeName(SubEdge, SubFace)
331     id_SubEdge = geompy.addToStudyInFather(SubFace, SubEdge, name)
332
333   #-------------------
334
335   print "DONE"