]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOM_SWIG/geompyDC.py
Salome HOME
Mantis issue 0021399: Cant' build an edge from a wire. A fix by JGV.
[modules/geom.git] / src / GEOM_SWIG / geompyDC.py
1 #  -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2011  CEA/DEN, EDF R&D, OPEN CASCADE
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20 #  File   : geompy.py
21 #  Author : Paul RASCLE, EDF
22 #  Module : GEOM
23
24 """
25     \namespace geompy
26     \brief Module geompy
27 """
28
29 ## @defgroup l1_geompy_auxiliary Auxiliary data structures and methods
30
31 ## @defgroup l1_geompy_purpose   All package methods, grouped by their purpose
32 ## @{
33 ##   @defgroup l2_import_export Importing/exporting geometrical objects
34 ##   @defgroup l2_creating      Creating geometrical objects
35 ##   @{
36 ##     @defgroup l3_basic_go      Creating Basic Geometric Objects
37 ##     @{
38 ##       @defgroup l4_curves        Creating Curves
39
40 ##     @}
41 ##     @defgroup l3_3d_primitives Creating 3D Primitives
42 ##     @defgroup l3_complex       Creating Complex Objects
43 ##     @defgroup l3_groups        Working with groups
44 ##     @defgroup l3_blocks        Building by blocks
45 ##     @{
46 ##       @defgroup l4_blocks_measure Check and Improve
47
48 ##     @}
49 ##     @defgroup l3_sketcher      Sketcher
50 ##     @defgroup l3_advanced      Creating Advanced Geometrical Objects
51 ##     @{
52 ##       @defgroup l4_decompose     Decompose objects
53 ##       @defgroup l4_decompose_d   Decompose objects deprecated methods
54 ##       @defgroup l4_access        Access to sub-shapes by their unique IDs inside the main shape
55 ##       @defgroup l4_obtain        Access to subshapes by a criteria
56 ##       @defgroup l4_advanced      Advanced objects creation functions
57
58 ##     @}
59
60 ##   @}
61 ##   @defgroup l2_transforming  Transforming geometrical objects
62 ##   @{
63 ##     @defgroup l3_basic_op      Basic Operations
64 ##     @defgroup l3_boolean       Boolean Operations
65 ##     @defgroup l3_transform     Transformation Operations
66 ##     @defgroup l3_local         Local Operations (Fillet and Chamfer)
67 ##     @defgroup l3_blocks_op     Blocks Operations
68 ##     @defgroup l3_healing       Repairing Operations
69 ##     @defgroup l3_restore_ss    Restore presentation parameters and a tree of subshapes
70
71 ##   @}
72 ##   @defgroup l2_measure       Using measurement tools
73
74 ## @}
75
76 import salome
77 salome.salome_init()
78 from salome import *
79
80 from salome_notebook import *
81
82 import GEOM
83 import math
84
85 ## Enumeration ShapeType as a dictionary
86 #  @ingroup l1_geompy_auxiliary
87 ShapeType = {"AUTO":-1, "COMPOUND":0, "COMPSOLID":1, "SOLID":2, "SHELL":3, "FACE":4, "WIRE":5, "EDGE":6, "VERTEX":7, "SHAPE":8}
88
89 ## Raise an Error, containing the Method_name, if Operation is Failed
90 ## @ingroup l1_geompy_auxiliary
91 def RaiseIfFailed (Method_name, Operation):
92     if Operation.IsDone() == 0 and Operation.GetErrorCode() != "NOT_FOUND_ANY":
93         raise RuntimeError, Method_name + " : " + Operation.GetErrorCode()
94
95 ## Return list of variables value from salome notebook
96 ## @ingroup l1_geompy_auxiliary
97 def ParseParameters(*parameters):
98     Result = []
99     StringResult = []
100     for parameter in parameters:
101         if isinstance(parameter, list):
102             lResults = ParseParameters(*parameter)
103             if len(lResults) > 0:
104                 Result.append(lResults[:-1])
105                 StringResult += lResults[-1].split(":")
106                 pass
107             pass
108         else:
109             if isinstance(parameter,str):
110                 if notebook.isVariable(parameter):
111                     Result.append(notebook.get(parameter))
112                 else:
113                     raise RuntimeError, "Variable with name '" + parameter + "' doesn't exist!!!"
114                 pass
115             else:
116                 Result.append(parameter)
117                 pass
118             StringResult.append(str(parameter))
119             pass
120         pass
121     if Result:
122         Result.append(":".join(StringResult))
123     else:
124         Result = ":".join(StringResult)
125     return Result
126
127 ## Return list of variables value from salome notebook
128 ## @ingroup l1_geompy_auxiliary
129 def ParseList(list):
130     Result = []
131     StringResult = ""
132     for parameter in list:
133         if isinstance(parameter,str) and notebook.isVariable(parameter):
134             Result.append(str(notebook.get(parameter)))
135             pass
136         else:
137             Result.append(str(parameter))
138             pass
139
140         StringResult = StringResult + str(parameter)
141         StringResult = StringResult + ":"
142         pass
143     StringResult = StringResult[:len(StringResult)-1]
144     return Result, StringResult
145
146 ## Return list of variables value from salome notebook
147 ## @ingroup l1_geompy_auxiliary
148 def ParseSketcherCommand(command):
149     Result = ""
150     StringResult = ""
151     sections = command.split(":")
152     for section in sections:
153         parameters = section.split(" ")
154         paramIndex = 1
155         for parameter in parameters:
156             if paramIndex > 1 and parameter.find("'") != -1:
157                 parameter = parameter.replace("'","")
158                 if notebook.isVariable(parameter):
159                     Result = Result + str(notebook.get(parameter)) + " "
160                     pass
161                 else:
162                     raise RuntimeError, "Variable with name '" + parameter + "' doesn't exist!!!"
163                     pass
164                 pass
165             else:
166                 Result = Result + str(parameter) + " "
167                 pass
168             if paramIndex > 1:
169                 StringResult = StringResult + parameter
170                 StringResult = StringResult + ":"
171                 pass
172             paramIndex = paramIndex + 1
173             pass
174         Result = Result[:len(Result)-1] + ":"
175         pass
176     Result = Result[:len(Result)-1]
177     return Result, StringResult
178
179 ## Helper function which can be used to pack the passed string to the byte data.
180 ## Only '1' an '0' symbols are valid for the string. The missing bits are replaced by zeroes.
181 ## If the string contains invalid symbol (neither '1' nor '0'), the function raises an exception.
182 ## For example,
183 ## \code
184 ## val = PackData("10001110") # val = 0xAE
185 ## val = PackData("1")        # val = 0x80
186 ## \endcode
187 ## @param data unpacked data - a string containing '1' and '0' symbols
188 ## @return data packed to the byte stream
189 ## @ingroup l1_geompy_auxiliary
190 def PackData(data):
191     bytes = len(data)/8
192     if len(data)%8: bytes += 1
193     res = ""
194     for b in range(bytes):
195         d = data[b*8:(b+1)*8]
196         val = 0
197         for i in range(8):
198             val *= 2
199             if i < len(d):
200                 if d[i] == "1": val += 1
201                 elif d[i] != "0":
202                     raise "Invalid symbol %s" % d[i]
203                 pass
204             pass
205         res += chr(val)
206         pass
207     return res
208
209 ## Read bitmap texture from the text file.
210 ## In that file, any non-zero symbol represents '1' opaque pixel of the bitmap.
211 ## A zero symbol ('0') represents transparent pixel of the texture bitmap.
212 ## The function returns width and height of the pixmap in pixels and byte stream representing
213 ## texture bitmap itself.
214 ##
215 ## This function can be used to read the texture to the byte stream in order to pass it to
216 ## the AddTexture() function of geompy class.
217 ## For example,
218 ## \code
219 ## import geompy
220 ## geompy.init_geom(salome.myStudy)
221 ## texture = geompy.readtexture('mytexture.dat')
222 ## texture = geompy.AddTexture(*texture)
223 ## obj.SetMarkerTexture(texture)
224 ## \endcode
225 ## @param fname texture file name
226 ## @return sequence of tree values: texture's width, height in pixels and its byte stream
227 ## @ingroup l1_geompy_auxiliary
228 def ReadTexture(fname):
229     try:
230         f = open(fname)
231         lines = [ l.strip() for l in f.readlines()]
232         f.close()
233         maxlen = 0
234         if lines: maxlen = max([len(x) for x in lines])
235         lenbytes = maxlen/8
236         if maxlen%8: lenbytes += 1
237         bytedata=""
238         for line in lines:
239             if len(line)%8:
240                 lenline = (len(line)/8+1)*8
241                 pass
242             else:
243                 lenline = (len(line)/8)*8
244                 pass
245             for i in range(lenline/8):
246                 byte=""
247                 for j in range(8):
248                     if i*8+j < len(line) and line[i*8+j] != "0": byte += "1"
249                     else: byte += "0"
250                     pass
251                 bytedata += PackData(byte)
252                 pass
253             for i in range(lenline/8, lenbytes):
254                 bytedata += PackData("0")
255             pass
256         return lenbytes*8, len(lines), bytedata
257     except:
258         pass
259     return 0, 0, ""
260
261 ## Returns a long value from enumeration type
262 #  Can be used for CORBA enumerator types like GEOM.shape_type
263 #  @ingroup l1_geompy_auxiliary
264 def EnumToLong(theItem):
265     ret = theItem
266     if hasattr(theItem, "_v"): ret = theItem._v
267     return ret
268
269 ## Kinds of shape enumeration
270 #  @ingroup l1_geompy_auxiliary
271 kind = GEOM.GEOM_IKindOfShape
272
273 ## Information about closed/unclosed state of shell or wire
274 #  @ingroup l1_geompy_auxiliary
275 class info:
276     UNKNOWN  = 0
277     CLOSED   = 1
278     UNCLOSED = 2
279
280 class geompyDC(GEOM._objref_GEOM_Gen):
281
282         def __init__(self):
283             GEOM._objref_GEOM_Gen.__init__(self)
284             self.myBuilder = None
285             self.myStudyId = 0
286             self.father    = None
287
288             self.BasicOp  = None
289             self.CurvesOp = None
290             self.PrimOp   = None
291             self.ShapesOp = None
292             self.HealOp   = None
293             self.InsertOp = None
294             self.BoolOp   = None
295             self.TrsfOp   = None
296             self.LocalOp  = None
297             self.MeasuOp  = None
298             self.BlocksOp = None
299             self.GroupOp  = None
300             self.AdvOp    = None
301             pass
302
303         ## @addtogroup l1_geompy_auxiliary
304         ## @{
305         def init_geom(self,theStudy):
306             self.myStudy = theStudy
307             self.myStudyId = self.myStudy._get_StudyId()
308             self.myBuilder = self.myStudy.NewBuilder()
309             self.father = self.myStudy.FindComponent("GEOM")
310             if self.father is None:
311                 self.father = self.myBuilder.NewComponent("GEOM")
312                 A1 = self.myBuilder.FindOrCreateAttribute(self.father, "AttributeName")
313                 FName = A1._narrow(SALOMEDS.AttributeName)
314                 FName.SetValue("Geometry")
315                 A2 = self.myBuilder.FindOrCreateAttribute(self.father, "AttributePixMap")
316                 aPixmap = A2._narrow(SALOMEDS.AttributePixMap)
317                 aPixmap.SetPixMap("ICON_OBJBROWSER_Geometry")
318                 self.myBuilder.DefineComponentInstance(self.father,self)
319                 pass
320             self.BasicOp  = self.GetIBasicOperations    (self.myStudyId)
321             self.CurvesOp = self.GetICurvesOperations   (self.myStudyId)
322             self.PrimOp   = self.GetI3DPrimOperations   (self.myStudyId)
323             self.ShapesOp = self.GetIShapesOperations   (self.myStudyId)
324             self.HealOp   = self.GetIHealingOperations  (self.myStudyId)
325             self.InsertOp = self.GetIInsertOperations   (self.myStudyId)
326             self.BoolOp   = self.GetIBooleanOperations  (self.myStudyId)
327             self.TrsfOp   = self.GetITransformOperations(self.myStudyId)
328             self.LocalOp  = self.GetILocalOperations    (self.myStudyId)
329             self.MeasuOp  = self.GetIMeasureOperations  (self.myStudyId)
330             self.BlocksOp = self.GetIBlocksOperations   (self.myStudyId)
331             self.GroupOp  = self.GetIGroupOperations    (self.myStudyId)
332             self.AdvOp    = self.GetIAdvancedOperations (self.myStudyId)
333             pass
334
335         ## Dump component to the Python script
336         #  This method overrides IDL function to allow default values for the parameters.
337         def DumpPython(self, theStudy, theIsPublished=True, theIsMultiFile=True):
338             return GEOM._objref_GEOM_Gen.DumpPython(self, theStudy, theIsPublished, theIsMultiFile)
339
340         ## Get name for sub-shape aSubObj of shape aMainObj
341         #
342         # @ref swig_SubShapeAllSorted "Example"
343         def SubShapeName(self,aSubObj, aMainObj):
344             # Example: see GEOM_TestAll.py
345
346             #aSubId  = orb.object_to_string(aSubObj)
347             #aMainId = orb.object_to_string(aMainObj)
348             #index = gg.getIndexTopology(aSubId, aMainId)
349             #name = gg.getShapeTypeString(aSubId) + "_%d"%(index)
350             index = self.ShapesOp.GetTopologyIndex(aMainObj, aSubObj)
351             name = self.ShapesOp.GetShapeTypeString(aSubObj) + "_%d"%(index)
352             return name
353
354         ## Publish in study aShape with name aName
355         #
356         #  \param aShape the shape to be published
357         #  \param aName  the name for the shape
358         #  \param doRestoreSubShapes if True, finds and publishes also
359         #         sub-shapes of <VAR>aShape</VAR>, corresponding to its arguments
360         #         and published sub-shapes of arguments
361         #  \param theArgs,theFindMethod,theInheritFirstArg see geompy.RestoreSubShapes for
362         #                                                  these arguments description
363         #  \return study entry of the published shape in form of string
364         #
365         #  @ref swig_MakeQuad4Vertices "Example"
366         def addToStudy(self, aShape, aName, doRestoreSubShapes=False,
367                        theArgs=[], theFindMethod=GEOM.FSM_GetInPlace, theInheritFirstArg=False):
368             # Example: see GEOM_TestAll.py
369             try:
370                 aSObject = self.AddInStudy(self.myStudy, aShape, aName, None)
371                 if doRestoreSubShapes:
372                     self.RestoreSubShapesSO(self.myStudy, aSObject, theArgs,
373                                             theFindMethod, theInheritFirstArg, True )
374             except:
375                 print "addToStudy() failed"
376                 return ""
377             return aShape.GetStudyEntry()
378
379         ## Publish in study aShape with name aName as sub-object of previously published aFather
380         #
381         #  @ref swig_SubShapeAllSorted "Example"
382         def addToStudyInFather(self, aFather, aShape, aName):
383             # Example: see GEOM_TestAll.py
384             try:
385                 aSObject = self.AddInStudy(self.myStudy, aShape, aName, aFather)
386             except:
387                 print "addToStudyInFather() failed"
388                 return ""
389             return aShape.GetStudyEntry()
390
391         ## Unpublish object in study
392         #
393         def hideInStudy(self, obj):
394             ior = salome.orb.object_to_string(obj)
395             aSObject = self.myStudy.FindObjectIOR(ior)
396             if aSObject is not None:
397                 genericAttribute = self.myBuilder.FindOrCreateAttribute(aSObject, "AttributeDrawable")
398                 drwAttribute = genericAttribute._narrow(SALOMEDS.AttributeDrawable)
399                 drwAttribute.SetDrawable(False)
400             pass
401         
402         # end of l1_geompy_auxiliary
403         ## @}
404
405         ## @addtogroup l3_restore_ss
406         ## @{
407
408         ## Publish sub-shapes, standing for arguments and sub-shapes of arguments
409         #  To be used from python scripts out of geompy.addToStudy (non-default usage)
410         #  \param theObject published GEOM object, arguments of which will be published
411         #  \param theArgs   list of GEOM_Object, operation arguments to be published.
412         #                   If this list is empty, all operation arguments will be published
413         #  \param theFindMethod method to search subshapes, corresponding to arguments and
414         #                       their subshapes. Value from enumeration GEOM::find_shape_method.
415         #  \param theInheritFirstArg set properties of the first argument for <VAR>theObject</VAR>.
416         #                            Do not publish subshapes in place of arguments, but only
417         #                            in place of subshapes of the first argument,
418         #                            because the whole shape corresponds to the first argument.
419         #                            Mainly to be used after transformations, but it also can be
420         #                            usefull after partition with one object shape, and some other
421         #                            operations, where only the first argument has to be considered.
422         #                            If theObject has only one argument shape, this flag is automatically
423         #                            considered as True, not regarding really passed value.
424         #  \param theAddPrefix add prefix "from_" to names of restored sub-shapes,
425         #                      and prefix "from_subshapes_of_" to names of partially restored subshapes.
426         #  \return list of published sub-shapes
427         #
428         #  @ref tui_restore_prs_params "Example"
429         def RestoreSubShapes (self, theObject, theArgs=[], theFindMethod=GEOM.FSM_GetInPlace,
430                               theInheritFirstArg=False, theAddPrefix=True):
431             # Example: see GEOM_TestAll.py
432             return self.RestoreSubShapesO(self.myStudy, theObject, theArgs,
433                                           theFindMethod, theInheritFirstArg, theAddPrefix)
434
435         ## Publish sub-shapes, standing for arguments and sub-shapes of arguments
436         #  To be used from python scripts out of geompy.addToStudy (non-default usage)
437         #  \param theObject published GEOM object, arguments of which will be published
438         #  \param theArgs   list of GEOM_Object, operation arguments to be published.
439         #                   If this list is empty, all operation arguments will be published
440         #  \param theFindMethod method to search subshapes, corresponding to arguments and
441         #                       their subshapes. Value from enumeration GEOM::find_shape_method.
442         #  \param theInheritFirstArg set properties of the first argument for <VAR>theObject</VAR>.
443         #                            Do not publish subshapes in place of arguments, but only
444         #                            in place of subshapes of the first argument,
445         #                            because the whole shape corresponds to the first argument.
446         #                            Mainly to be used after transformations, but it also can be
447         #                            usefull after partition with one object shape, and some other
448         #                            operations, where only the first argument has to be considered.
449         #                            If theObject has only one argument shape, this flag is automatically
450         #                            considered as True, not regarding really passed value.
451         #  \param theAddPrefix add prefix "from_" to names of restored sub-shapes,
452         #                      and prefix "from_subshapes_of_" to names of partially restored subshapes.
453         #  \return list of published sub-shapes
454         #
455         #  @ref tui_restore_prs_params "Example"
456         def RestoreGivenSubShapes (self, theObject, theArgs=[], theFindMethod=GEOM.FSM_GetInPlace,
457                                    theInheritFirstArg=False, theAddPrefix=True):
458             # Example: see GEOM_TestAll.py
459             return self.RestoreGivenSubShapesO(self.myStudy, theObject, theArgs,
460                                                theFindMethod, theInheritFirstArg, theAddPrefix)
461
462         # end of l3_restore_ss
463         ## @}
464
465         ## @addtogroup l3_basic_go
466         ## @{
467
468         ## Create point by three coordinates.
469         #  @param theX The X coordinate of the point.
470         #  @param theY The Y coordinate of the point.
471         #  @param theZ The Z coordinate of the point.
472         #  @return New GEOM_Object, containing the created point.
473         #
474         #  @ref tui_creation_point "Example"
475         def MakeVertex(self, theX, theY, theZ):
476             # Example: see GEOM_TestAll.py
477             theX,theY,theZ,Parameters = ParseParameters(theX, theY, theZ)
478             anObj = self.BasicOp.MakePointXYZ(theX, theY, theZ)
479             RaiseIfFailed("MakePointXYZ", self.BasicOp)
480             anObj.SetParameters(Parameters)
481             return anObj
482
483         ## Create a point, distant from the referenced point
484         #  on the given distances along the coordinate axes.
485         #  @param theReference The referenced point.
486         #  @param theX Displacement from the referenced point along OX axis.
487         #  @param theY Displacement from the referenced point along OY axis.
488         #  @param theZ Displacement from the referenced point along OZ axis.
489         #  @return New GEOM_Object, containing the created point.
490         #
491         #  @ref tui_creation_point "Example"
492         def MakeVertexWithRef(self,theReference, theX, theY, theZ):
493             # Example: see GEOM_TestAll.py
494             theX,theY,theZ,Parameters = ParseParameters(theX, theY, theZ)
495             anObj = self.BasicOp.MakePointWithReference(theReference, theX, theY, theZ)
496             RaiseIfFailed("MakePointWithReference", self.BasicOp)
497             anObj.SetParameters(Parameters)
498             return anObj
499
500         ## Create a point, corresponding to the given parameter on the given curve.
501         #  @param theRefCurve The referenced curve.
502         #  @param theParameter Value of parameter on the referenced curve.
503         #  @return New GEOM_Object, containing the created point.
504         #
505         #  @ref tui_creation_point "Example"
506         def MakeVertexOnCurve(self,theRefCurve, theParameter):
507             # Example: see GEOM_TestAll.py
508             theParameter, Parameters = ParseParameters(theParameter)
509             anObj = self.BasicOp.MakePointOnCurve(theRefCurve, theParameter)
510             RaiseIfFailed("MakePointOnCurve", self.BasicOp)
511             anObj.SetParameters(Parameters)
512             return anObj
513
514         ## Create a point by projection give coordinates on the given curve
515         #  @param theRefCurve The referenced curve.
516         #  @param theX X-coordinate in 3D space
517         #  @param theY Y-coordinate in 3D space
518         #  @param theZ Z-coordinate in 3D space
519         #  @return New GEOM_Object, containing the created point.
520         #
521         #  @ref tui_creation_point "Example"
522         def MakeVertexOnCurveByCoord(self,theRefCurve, theX, theY, theZ):
523             # Example: see GEOM_TestAll.py
524             theX, theY, theZ, Parameters = ParseParameters(theX, theY, theZ)
525             anObj = self.BasicOp.MakePointOnCurveByCoord(theRefCurve, theX, theY, theZ)
526             RaiseIfFailed("MakeVertexOnCurveByCoord", self.BasicOp)
527             anObj.SetParameters(Parameters)
528             return anObj
529
530         ## Create a point, corresponding to the given length on the given curve.
531         #  @param theRefCurve The referenced curve.
532         #  @param theLength Length on the referenced curve. It can be negative.
533         #  @param theStartPoint Point allowing to choose the direction for the calculation
534         #                       of the length. If None, start from the first point of theRefCurve.
535         #  @return New GEOM_Object, containing the created point.
536         #
537         #  @ref tui_creation_point "Example"
538         def MakeVertexOnCurveByLength(self, theRefCurve, theLength, theStartPoint = None):
539             # Example: see GEOM_TestAll.py
540             theLength, Parameters = ParseParameters(theLength)
541             anObj = self.BasicOp.MakePointOnCurveByLength(theRefCurve, theLength, theStartPoint)
542             RaiseIfFailed("MakePointOnCurveByLength", self.BasicOp)
543             anObj.SetParameters(Parameters)
544             return anObj
545
546         ## Create a point, corresponding to the given parameters on the
547         #    given surface.
548         #  @param theRefSurf The referenced surface.
549         #  @param theUParameter Value of U-parameter on the referenced surface.
550         #  @param theVParameter Value of V-parameter on the referenced surface.
551         #  @return New GEOM_Object, containing the created point.
552         #
553         #  @ref swig_MakeVertexOnSurface "Example"
554         def MakeVertexOnSurface(self, theRefSurf, theUParameter, theVParameter):
555             theUParameter, theVParameter, Parameters = ParseParameters(theUParameter, theVParameter)
556             # Example: see GEOM_TestAll.py
557             anObj = self.BasicOp.MakePointOnSurface(theRefSurf, theUParameter, theVParameter)
558             RaiseIfFailed("MakePointOnSurface", self.BasicOp)
559             anObj.SetParameters(Parameters);
560             return anObj
561
562         ## Create a point by projection give coordinates on the given surface
563         #  @param theRefSurf The referenced surface.
564         #  @param theX X-coordinate in 3D space
565         #  @param theY Y-coordinate in 3D space
566         #  @param theZ Z-coordinate in 3D space
567         #  @return New GEOM_Object, containing the created point.
568         #
569         #  @ref swig_MakeVertexOnSurfaceByCoord "Example"
570         def MakeVertexOnSurfaceByCoord(self, theRefSurf, theX, theY, theZ):
571             theX, theY, theZ, Parameters = ParseParameters(theX, theY, theZ)
572             # Example: see GEOM_TestAll.py
573             anObj = self.BasicOp.MakePointOnSurfaceByCoord(theRefSurf, theX, theY, theZ)
574             RaiseIfFailed("MakeVertexOnSurfaceByCoord", self.BasicOp)
575             anObj.SetParameters(Parameters);
576             return anObj
577
578         ## Create a point on intersection of two lines.
579         #  @param theRefLine1, theRefLine2 The referenced lines.
580         #  @return New GEOM_Object, containing the created point.
581         #
582         #  @ref swig_MakeVertexOnLinesIntersection "Example"
583         def MakeVertexOnLinesIntersection(self, theRefLine1, theRefLine2):
584             # Example: see GEOM_TestAll.py
585             anObj = self.BasicOp.MakePointOnLinesIntersection(theRefLine1, theRefLine2)
586             RaiseIfFailed("MakePointOnLinesIntersection", self.BasicOp)
587             return anObj
588
589         ## Create a tangent, corresponding to the given parameter on the given curve.
590         #  @param theRefCurve The referenced curve.
591         #  @param theParameter Value of parameter on the referenced curve.
592         #  @return New GEOM_Object, containing the created tangent.
593         #
594         #  @ref swig_MakeTangentOnCurve "Example"
595         def MakeTangentOnCurve(self, theRefCurve, theParameter):
596             anObj = self.BasicOp.MakeTangentOnCurve(theRefCurve, theParameter)
597             RaiseIfFailed("MakeTangentOnCurve", self.BasicOp)
598             return anObj
599
600         ## Create a tangent plane, corresponding to the given parameter on the given face.
601         #  @param theFace The face for which tangent plane should be built.
602         #  @param theParameterV vertical value of the center point (0.0 - 1.0).
603         #  @param theParameterU horisontal value of the center point (0.0 - 1.0).
604         #  @param theTrimSize the size of plane.
605         #  @return New GEOM_Object, containing the created tangent.
606         #
607         #  @ref swig_MakeTangentPlaneOnFace "Example"
608         def MakeTangentPlaneOnFace(self, theFace, theParameterU, theParameterV, theTrimSize):
609             anObj = self.BasicOp.MakeTangentPlaneOnFace(theFace, theParameterU, theParameterV, theTrimSize)
610             RaiseIfFailed("MakeTangentPlaneOnFace", self.BasicOp)
611             return anObj
612
613         ## Create a vector with the given components.
614         #  @param theDX X component of the vector.
615         #  @param theDY Y component of the vector.
616         #  @param theDZ Z component of the vector.
617         #  @return New GEOM_Object, containing the created vector.
618         #
619         #  @ref tui_creation_vector "Example"
620         def MakeVectorDXDYDZ(self,theDX, theDY, theDZ):
621             # Example: see GEOM_TestAll.py
622             theDX,theDY,theDZ,Parameters = ParseParameters(theDX, theDY, theDZ)
623             anObj = self.BasicOp.MakeVectorDXDYDZ(theDX, theDY, theDZ)
624             RaiseIfFailed("MakeVectorDXDYDZ", self.BasicOp)
625             anObj.SetParameters(Parameters)
626             return anObj
627
628         ## Create a vector between two points.
629         #  @param thePnt1 Start point for the vector.
630         #  @param thePnt2 End point for the vector.
631         #  @return New GEOM_Object, containing the created vector.
632         #
633         #  @ref tui_creation_vector "Example"
634         def MakeVector(self,thePnt1, thePnt2):
635             # Example: see GEOM_TestAll.py
636             anObj = self.BasicOp.MakeVectorTwoPnt(thePnt1, thePnt2)
637             RaiseIfFailed("MakeVectorTwoPnt", self.BasicOp)
638             return anObj
639
640         ## Create a line, passing through the given point
641         #  and parrallel to the given direction
642         #  @param thePnt Point. The resulting line will pass through it.
643         #  @param theDir Direction. The resulting line will be parallel to it.
644         #  @return New GEOM_Object, containing the created line.
645         #
646         #  @ref tui_creation_line "Example"
647         def MakeLine(self,thePnt, theDir):
648             # Example: see GEOM_TestAll.py
649             anObj = self.BasicOp.MakeLine(thePnt, theDir)
650             RaiseIfFailed("MakeLine", self.BasicOp)
651             return anObj
652
653         ## Create a line, passing through the given points
654         #  @param thePnt1 First of two points, defining the line.
655         #  @param thePnt2 Second of two points, defining the line.
656         #  @return New GEOM_Object, containing the created line.
657         #
658         #  @ref tui_creation_line "Example"
659         def MakeLineTwoPnt(self,thePnt1, thePnt2):
660             # Example: see GEOM_TestAll.py
661             anObj = self.BasicOp.MakeLineTwoPnt(thePnt1, thePnt2)
662             RaiseIfFailed("MakeLineTwoPnt", self.BasicOp)
663             return anObj
664
665         ## Create a line on two faces intersection.
666         #  @param theFace1 First of two faces, defining the line.
667         #  @param theFace2 Second of two faces, defining the line.
668         #  @return New GEOM_Object, containing the created line.
669         #
670         #  @ref swig_MakeLineTwoFaces "Example"
671         def MakeLineTwoFaces(self, theFace1, theFace2):
672             # Example: see GEOM_TestAll.py
673             anObj = self.BasicOp.MakeLineTwoFaces(theFace1, theFace2)
674             RaiseIfFailed("MakeLineTwoFaces", self.BasicOp)
675             return anObj
676
677         ## Create a plane, passing through the given point
678         #  and normal to the given vector.
679         #  @param thePnt Point, the plane has to pass through.
680         #  @param theVec Vector, defining the plane normal direction.
681         #  @param theTrimSize Half size of a side of quadrangle face, representing the plane.
682         #  @return New GEOM_Object, containing the created plane.
683         #
684         #  @ref tui_creation_plane "Example"
685         def MakePlane(self,thePnt, theVec, theTrimSize):
686             # Example: see GEOM_TestAll.py
687             theTrimSize, Parameters = ParseParameters(theTrimSize);
688             anObj = self.BasicOp.MakePlanePntVec(thePnt, theVec, theTrimSize)
689             RaiseIfFailed("MakePlanePntVec", self.BasicOp)
690             anObj.SetParameters(Parameters)
691             return anObj
692
693         ## Create a plane, passing through the three given points
694         #  @param thePnt1 First of three points, defining the plane.
695         #  @param thePnt2 Second of three points, defining the plane.
696         #  @param thePnt3 Fird of three points, defining the plane.
697         #  @param theTrimSize Half size of a side of quadrangle face, representing the plane.
698         #  @return New GEOM_Object, containing the created plane.
699         #
700         #  @ref tui_creation_plane "Example"
701         def MakePlaneThreePnt(self,thePnt1, thePnt2, thePnt3, theTrimSize):
702             # Example: see GEOM_TestAll.py
703             theTrimSize, Parameters = ParseParameters(theTrimSize);
704             anObj = self.BasicOp.MakePlaneThreePnt(thePnt1, thePnt2, thePnt3, theTrimSize)
705             RaiseIfFailed("MakePlaneThreePnt", self.BasicOp)
706             anObj.SetParameters(Parameters)
707             return anObj
708
709         ## Create a plane, similar to the existing one, but with another size of representing face.
710         #  @param theFace Referenced plane or LCS(Marker).
711         #  @param theTrimSize New half size of a side of quadrangle face, representing the plane.
712         #  @return New GEOM_Object, containing the created plane.
713         #
714         #  @ref tui_creation_plane "Example"
715         def MakePlaneFace(self,theFace, theTrimSize):
716             # Example: see GEOM_TestAll.py
717             theTrimSize, Parameters = ParseParameters(theTrimSize);
718             anObj = self.BasicOp.MakePlaneFace(theFace, theTrimSize)
719             RaiseIfFailed("MakePlaneFace", self.BasicOp)
720             anObj.SetParameters(Parameters)
721             return anObj
722
723         ## Create a plane, passing through the 2 vectors
724         #  with center in a start point of the first vector.
725         #  @param theVec1 Vector, defining center point and plane direction.
726         #  @param theVec2 Vector, defining the plane normal direction.
727         #  @param theTrimSize Half size of a side of quadrangle face, representing the plane.
728         #  @return New GEOM_Object, containing the created plane.
729         #
730         #  @ref tui_creation_plane "Example"
731         def MakePlane2Vec(self,theVec1, theVec2, theTrimSize):
732             # Example: see GEOM_TestAll.py
733             theTrimSize, Parameters = ParseParameters(theTrimSize);
734             anObj = self.BasicOp.MakePlane2Vec(theVec1, theVec2, theTrimSize)
735             RaiseIfFailed("MakePlane2Vec", self.BasicOp)
736             anObj.SetParameters(Parameters)
737             return anObj
738
739         ## Create a plane, based on a Local coordinate system.
740         #  @param theLCS  coordinate system, defining plane.
741         #  @param theTrimSize Half size of a side of quadrangle face, representing the plane.
742         #  @param theOrientation OXY, OYZ or OZX orientation - (1, 2 or 3)
743         #  @return New GEOM_Object, containing the created plane.
744         #
745         #  @ref tui_creation_plane "Example"
746         def MakePlaneLCS(self,theLCS, theTrimSize, theOrientation):
747             # Example: see GEOM_TestAll.py
748             theTrimSize, Parameters = ParseParameters(theTrimSize);
749             anObj = self.BasicOp.MakePlaneLCS(theLCS, theTrimSize, theOrientation)
750             RaiseIfFailed("MakePlaneLCS", self.BasicOp)
751             anObj.SetParameters(Parameters)
752             return anObj
753
754         ## Create a local coordinate system.
755         #  @param OX,OY,OZ Three coordinates of coordinate system origin.
756         #  @param XDX,XDY,XDZ Three components of OX direction
757         #  @param YDX,YDY,YDZ Three components of OY direction
758         #  @return New GEOM_Object, containing the created coordinate system.
759         #
760         #  @ref swig_MakeMarker "Example"
761         def MakeMarker(self, OX,OY,OZ, XDX,XDY,XDZ, YDX,YDY,YDZ):
762             # Example: see GEOM_TestAll.py
763             OX,OY,OZ, XDX,XDY,XDZ, YDX,YDY,YDZ, Parameters = ParseParameters(OX,OY,OZ, XDX,XDY,XDZ, YDX,YDY,YDZ);
764             anObj = self.BasicOp.MakeMarker(OX,OY,OZ, XDX,XDY,XDZ, YDX,YDY,YDZ)
765             RaiseIfFailed("MakeMarker", self.BasicOp)
766             anObj.SetParameters(Parameters)
767             return anObj
768
769         ## Create a local coordinate system from shape.
770         #  @param theShape The initial shape to detect the coordinate system.
771         #  @return New GEOM_Object, containing the created coordinate system.
772         #
773         #  @ref tui_creation_lcs "Example"
774         def MakeMarkerFromShape(self, theShape):
775             anObj = self.BasicOp.MakeMarkerFromShape(theShape)
776             RaiseIfFailed("MakeMarkerFromShape", self.BasicOp)
777             return anObj
778
779         ## Create a local coordinate system from point and two vectors.
780         #  @param theOrigin Point of coordinate system origin.
781         #  @param theXVec Vector of X direction
782         #  @param theYVec Vector of Y direction
783         #  @return New GEOM_Object, containing the created coordinate system.
784         #
785         #  @ref tui_creation_lcs "Example"
786         def MakeMarkerPntTwoVec(self, theOrigin, theXVec, theYVec):
787             anObj = self.BasicOp.MakeMarkerPntTwoVec(theOrigin, theXVec, theYVec)
788             RaiseIfFailed("MakeMarkerPntTwoVec", self.BasicOp)
789             return anObj
790
791         # end of l3_basic_go
792         ## @}
793
794         ## @addtogroup l4_curves
795         ## @{
796
797         ##  Create an arc of circle, passing through three given points.
798         #  @param thePnt1 Start point of the arc.
799         #  @param thePnt2 Middle point of the arc.
800         #  @param thePnt3 End point of the arc.
801         #  @return New GEOM_Object, containing the created arc.
802         #
803         #  @ref swig_MakeArc "Example"
804         def MakeArc(self,thePnt1, thePnt2, thePnt3):
805             # Example: see GEOM_TestAll.py
806             anObj = self.CurvesOp.MakeArc(thePnt1, thePnt2, thePnt3)
807             RaiseIfFailed("MakeArc", self.CurvesOp)
808             return anObj
809
810         ##  Create an arc of circle from a center and 2 points.
811         #  @param thePnt1 Center of the arc
812         #  @param thePnt2 Start point of the arc. (Gives also the radius of the arc)
813         #  @param thePnt3 End point of the arc (Gives also a direction)
814         #  @param theSense Orientation of the arc
815         #  @return New GEOM_Object, containing the created arc.
816         #
817         #  @ref swig_MakeArc "Example"
818         def MakeArcCenter(self, thePnt1, thePnt2, thePnt3, theSense=False):
819             # Example: see GEOM_TestAll.py
820             anObj = self.CurvesOp.MakeArcCenter(thePnt1, thePnt2, thePnt3, theSense)
821             RaiseIfFailed("MakeArcCenter", self.CurvesOp)
822             return anObj
823
824         ##  Create an arc of ellipse, of center and two points.
825         #  @param theCenter Center of the arc.
826         #  @param thePnt1 defines major radius of the arc by distance from Pnt1 to Pnt2.
827         #  @param thePnt2 defines plane of ellipse and minor radius as distance from Pnt3 to line from Pnt1 to Pnt2.
828         #  @return New GEOM_Object, containing the created arc.
829         #
830         #  @ref swig_MakeArc "Example"
831         def MakeArcOfEllipse(self,theCenter, thePnt1, thePnt2):
832             # Example: see GEOM_TestAll.py
833             anObj = self.CurvesOp.MakeArcOfEllipse(theCenter, thePnt1, thePnt2)
834             RaiseIfFailed("MakeArcOfEllipse", self.CurvesOp)
835             return anObj
836
837         ## Create a circle with given center, normal vector and radius.
838         #  @param thePnt Circle center.
839         #  @param theVec Vector, normal to the plane of the circle.
840         #  @param theR Circle radius.
841         #  @return New GEOM_Object, containing the created circle.
842         #
843         #  @ref tui_creation_circle "Example"
844         def MakeCircle(self, thePnt, theVec, theR):
845             # Example: see GEOM_TestAll.py
846             theR, Parameters = ParseParameters(theR)
847             anObj = self.CurvesOp.MakeCirclePntVecR(thePnt, theVec, theR)
848             RaiseIfFailed("MakeCirclePntVecR", self.CurvesOp)
849             anObj.SetParameters(Parameters)
850             return anObj
851
852         ## Create a circle with given radius.
853         #  Center of the circle will be in the origin of global
854         #  coordinate system and normal vector will be codirected with Z axis
855         #  @param theR Circle radius.
856         #  @return New GEOM_Object, containing the created circle.
857         def MakeCircleR(self, theR):
858             anObj = self.CurvesOp.MakeCirclePntVecR(None, None, theR)
859             RaiseIfFailed("MakeCirclePntVecR", self.CurvesOp)
860             return anObj
861
862         ## Create a circle, passing through three given points
863         #  @param thePnt1,thePnt2,thePnt3 Points, defining the circle.
864         #  @return New GEOM_Object, containing the created circle.
865         #
866         #  @ref tui_creation_circle "Example"
867         def MakeCircleThreePnt(self,thePnt1, thePnt2, thePnt3):
868             # Example: see GEOM_TestAll.py
869             anObj = self.CurvesOp.MakeCircleThreePnt(thePnt1, thePnt2, thePnt3)
870             RaiseIfFailed("MakeCircleThreePnt", self.CurvesOp)
871             return anObj
872
873         ## Create a circle, with given point1 as center,
874         #  passing through the point2 as radius and laying in the plane,
875         #  defined by all three given points.
876         #  @param thePnt1,thePnt2,thePnt3 Points, defining the circle.
877         #  @return New GEOM_Object, containing the created circle.
878         #
879         #  @ref swig_MakeCircle "Example"
880         def MakeCircleCenter2Pnt(self,thePnt1, thePnt2, thePnt3):
881             # Example: see GEOM_example6.py
882             anObj = self.CurvesOp.MakeCircleCenter2Pnt(thePnt1, thePnt2, thePnt3)
883             RaiseIfFailed("MakeCircleCenter2Pnt", self.CurvesOp)
884             return anObj
885
886         ## Create an ellipse with given center, normal vector and radiuses.
887         #  @param thePnt Ellipse center.
888         #  @param theVec Vector, normal to the plane of the ellipse.
889         #  @param theRMajor Major ellipse radius.
890         #  @param theRMinor Minor ellipse radius.
891         #  @param theVecMaj Vector, direction of the ellipse's main axis.
892         #  @return New GEOM_Object, containing the created ellipse.
893         #
894         #  @ref tui_creation_ellipse "Example"
895         def MakeEllipse(self, thePnt, theVec, theRMajor, theRMinor, theVecMaj=None):
896             # Example: see GEOM_TestAll.py
897             theRMajor, theRMinor, Parameters = ParseParameters(theRMajor, theRMinor)
898             if theVecMaj is not None:
899                 anObj = self.CurvesOp.MakeEllipseVec(thePnt, theVec, theRMajor, theRMinor, theVecMaj)
900             else:
901                 anObj = self.CurvesOp.MakeEllipse(thePnt, theVec, theRMajor, theRMinor)
902                 pass
903             RaiseIfFailed("MakeEllipse", self.CurvesOp)
904             anObj.SetParameters(Parameters)
905             return anObj
906
907         ## Create an ellipse with given radiuses.
908         #  Center of the ellipse will be in the origin of global
909         #  coordinate system and normal vector will be codirected with Z axis
910         #  @param theRMajor Major ellipse radius.
911         #  @param theRMinor Minor ellipse radius.
912         #  @return New GEOM_Object, containing the created ellipse.
913         def MakeEllipseRR(self, theRMajor, theRMinor):
914             anObj = self.CurvesOp.MakeEllipse(None, None, theRMajor, theRMinor)
915             RaiseIfFailed("MakeEllipse", self.CurvesOp)
916             return anObj
917
918         ## Create a polyline on the set of points.
919         #  @param thePoints Sequence of points for the polyline.
920         #  @param theIsClosed If True, build a closed wire.
921         #  @return New GEOM_Object, containing the created polyline.
922         #
923         #  @ref tui_creation_curve "Example"
924         def MakePolyline(self, thePoints, theIsClosed=False):
925             # Example: see GEOM_TestAll.py
926             anObj = self.CurvesOp.MakePolyline(thePoints, theIsClosed)
927             RaiseIfFailed("MakePolyline", self.CurvesOp)
928             return anObj
929
930         ## Create bezier curve on the set of points.
931         #  @param thePoints Sequence of points for the bezier curve.
932         #  @param theIsClosed If True, build a closed curve.
933         #  @return New GEOM_Object, containing the created bezier curve.
934         #
935         #  @ref tui_creation_curve "Example"
936         def MakeBezier(self, thePoints, theIsClosed=False):
937             # Example: see GEOM_TestAll.py
938             anObj = self.CurvesOp.MakeSplineBezier(thePoints, theIsClosed)
939             RaiseIfFailed("MakeSplineBezier", self.CurvesOp)
940             return anObj
941
942         ## Create B-Spline curve on the set of points.
943         #  @param thePoints Sequence of points for the B-Spline curve.
944         #  @param theIsClosed If True, build a closed curve.
945         #  @param theDoReordering If TRUE, the algo does not follow the order of
946         #                         \a thePoints but searches for the closest vertex.
947         #  @return New GEOM_Object, containing the created B-Spline curve.
948         #
949         #  @ref tui_creation_curve "Example"
950         def MakeInterpol(self, thePoints, theIsClosed=False, theDoReordering=False):
951             # Example: see GEOM_TestAll.py
952             anObj = self.CurvesOp.MakeSplineInterpolation(thePoints, theIsClosed, theDoReordering)
953             RaiseIfFailed("MakeSplineInterpolation", self.CurvesOp)
954             return anObj
955
956
957         ## Creates a curve using the parametric definition of the basic points.
958         #  @param thexExpr parametric equation of the coordinates X.
959         #  @param theyExpr parametric equation of the coordinates Y.
960         #  @param thezExpr parametric equation of the coordinates Z.
961         #  @param theParamMin the minimal value of the parameter.
962         #  @param theParamMax the maximum value of the parameter.
963         #  @param theParamStep the number of steps if theNewMethod = True, else step value of the parameter.
964         #  @param theCurveType the type of the curve.
965         #  @param theNewMethod flag for switching to the new method if the flag is set to false a deprecated method is used which can lead to a bug.
966         #  @return New GEOM_Object, containing the created curve.
967         #
968         #  @ref tui_creation_curve "Example"
969         def MakeCurveParametric(self, thexExpr, theyExpr, thezExpr,
970                                 theParamMin, theParamMax, theParamStep, theCurveType, theNewMethod=False ):
971             theParamMin,theParamMax,theParamStep,Parameters = ParseParameters(theParamMin,theParamMax,theParamStep)
972             if theNewMethod:
973               anObj = self.CurvesOp.MakeCurveParametricNew(thexExpr,theyExpr,thezExpr,theParamMin,theParamMax,theParamStep,theCurveType)
974             else:
975               anObj = self.CurvesOp.MakeCurveParametric(thexExpr,theyExpr,thezExpr,theParamMin,theParamMax,theParamStep,theCurveType)   
976             RaiseIfFailed("MakeSplineInterpolation", self.CurvesOp)
977             anObj.SetParameters(Parameters)
978             return anObj
979             
980
981
982         # end of l4_curves
983         ## @}
984
985         ## @addtogroup l3_sketcher
986         ## @{
987
988         ## Create a sketcher (wire or face), following the textual description,
989         #  passed through <VAR>theCommand</VAR> argument. \n
990         #  Edges of the resulting wire or face will be arcs of circles and/or linear segments. \n
991         #  Format of the description string have to be the following:
992         #
993         #  "Sketcher[:F x1 y1]:CMD[:CMD[:CMD...]]"
994         #
995         #  Where:
996         #  - x1, y1 are coordinates of the first sketcher point (zero by default),
997         #  - CMD is one of
998         #     - "R angle" : Set the direction by angle
999         #     - "D dx dy" : Set the direction by DX & DY
1000         #     .
1001         #       \n
1002         #     - "TT x y" : Create segment by point at X & Y
1003         #     - "T dx dy" : Create segment by point with DX & DY
1004         #     - "L length" : Create segment by direction & Length
1005         #     - "IX x" : Create segment by direction & Intersect. X
1006         #     - "IY y" : Create segment by direction & Intersect. Y
1007         #     .
1008         #       \n
1009         #     - "C radius length" : Create arc by direction, radius and length(in degree)
1010         #     - "AA x y": Create arc by point at X & Y
1011         #     - "A dx dy" : Create arc by point with DX & DY
1012         #     - "A dx dy" : Create arc by point with DX & DY
1013         #     - "UU x y radius flag1": Create arc by point at X & Y with given radiUs
1014         #     - "U dx dy radius flag1" : Create arc by point with DX & DY with given radiUs
1015         #     - "EE x y xc yc flag1 flag2": Create arc by point at X & Y with given cEnter coordinates
1016         #     - "E dx dy dxc dyc radius flag1 flag2" : Create arc by point with DX & DY with given cEnter coordinates
1017         #     .
1018         #       \n
1019         #     - "WW" : Close Wire (to finish)
1020         #     - "WF" : Close Wire and build face (to finish)
1021         #     .
1022         #        \n
1023         #  - Flag1 (= reverse) is 0 or 2 ...
1024         #     - if 0 the drawn arc is the one of lower angle (< Pi)
1025         #     - if 2 the drawn arc ius the one of greater angle (> Pi)
1026         #     .
1027         #        \n
1028         #  - Flag2 (= control tolerance) is 0 or 1 ...
1029         #     - if 0 the specified end point can be at a distance of the arc greater than the tolerance (10^-7)
1030         #     - if 1 the wire is built only if the end point is on the arc
1031         #       with a tolerance of 10^-7 on the distance else the creation fails
1032         #
1033         #  @param theCommand String, defining the sketcher in local
1034         #                    coordinates of the working plane.
1035         #  @param theWorkingPlane Nine double values, defining origin,
1036         #                         OZ and OX directions of the working plane.
1037         #  @return New GEOM_Object, containing the created wire.
1038         #
1039         #  @ref tui_sketcher_page "Example"
1040         def MakeSketcher(self, theCommand, theWorkingPlane = [0,0,0, 0,0,1, 1,0,0]):
1041             # Example: see GEOM_TestAll.py
1042             theCommand,Parameters = ParseSketcherCommand(theCommand)
1043             anObj = self.CurvesOp.MakeSketcher(theCommand, theWorkingPlane)
1044             RaiseIfFailed("MakeSketcher", self.CurvesOp)
1045             anObj.SetParameters(Parameters)
1046             return anObj
1047
1048         ## Create a sketcher (wire or face), following the textual description,
1049         #  passed through <VAR>theCommand</VAR> argument. \n
1050         #  For format of the description string see the previous method.\n
1051         #  @param theCommand String, defining the sketcher in local
1052         #                    coordinates of the working plane.
1053         #  @param theWorkingPlane Planar Face or LCS(Marker) of the working plane.
1054         #  @return New GEOM_Object, containing the created wire.
1055         #
1056         #  @ref tui_sketcher_page "Example"
1057         def MakeSketcherOnPlane(self, theCommand, theWorkingPlane):
1058             anObj = self.CurvesOp.MakeSketcherOnPlane(theCommand, theWorkingPlane)
1059             RaiseIfFailed("MakeSketcherOnPlane", self.CurvesOp)
1060             return anObj
1061
1062         ## Create a sketcher wire, following the numerical description,
1063         #  passed through <VAR>theCoordinates</VAR> argument. \n
1064         #  @param theCoordinates double values, defining points to create a wire,
1065         #                                                      passing from it.
1066         #  @return New GEOM_Object, containing the created wire.
1067         #
1068         #  @ref tui_sketcher_page "Example"
1069         def Make3DSketcher(self, theCoordinates):
1070             theCoordinates,Parameters = ParseParameters(theCoordinates)
1071             anObj = self.CurvesOp.Make3DSketcher(theCoordinates)
1072             RaiseIfFailed("Make3DSketcher", self.CurvesOp)
1073             anObj.SetParameters(Parameters)
1074             return anObj
1075
1076         # end of l3_sketcher
1077         ## @}
1078
1079         ## @addtogroup l3_3d_primitives
1080         ## @{
1081
1082         ## Create a box by coordinates of two opposite vertices.
1083         #
1084         #  @ref tui_creation_box "Example"
1085         def MakeBox(self,x1,y1,z1,x2,y2,z2):
1086             # Example: see GEOM_TestAll.py
1087             pnt1 = self.MakeVertex(x1,y1,z1)
1088             pnt2 = self.MakeVertex(x2,y2,z2)
1089             return self.MakeBoxTwoPnt(pnt1,pnt2)
1090
1091         ## Create a box with specified dimensions along the coordinate axes
1092         #  and with edges, parallel to the coordinate axes.
1093         #  Center of the box will be at point (DX/2, DY/2, DZ/2).
1094         #  @param theDX Length of Box edges, parallel to OX axis.
1095         #  @param theDY Length of Box edges, parallel to OY axis.
1096         #  @param theDZ Length of Box edges, parallel to OZ axis.
1097         #  @return New GEOM_Object, containing the created box.
1098         #
1099         #  @ref tui_creation_box "Example"
1100         def MakeBoxDXDYDZ(self,theDX, theDY, theDZ):
1101             # Example: see GEOM_TestAll.py
1102             theDX,theDY,theDZ,Parameters = ParseParameters(theDX, theDY, theDZ)
1103             anObj = self.PrimOp.MakeBoxDXDYDZ(theDX, theDY, theDZ)
1104             RaiseIfFailed("MakeBoxDXDYDZ", self.PrimOp)
1105             anObj.SetParameters(Parameters)
1106             return anObj
1107
1108         ## Create a box with two specified opposite vertices,
1109         #  and with edges, parallel to the coordinate axes
1110         #  @param thePnt1 First of two opposite vertices.
1111         #  @param thePnt2 Second of two opposite vertices.
1112         #  @return New GEOM_Object, containing the created box.
1113         #
1114         #  @ref tui_creation_box "Example"
1115         def MakeBoxTwoPnt(self,thePnt1, thePnt2):
1116             # Example: see GEOM_TestAll.py
1117             anObj = self.PrimOp.MakeBoxTwoPnt(thePnt1, thePnt2)
1118             RaiseIfFailed("MakeBoxTwoPnt", self.PrimOp)
1119             return anObj
1120
1121         ## Create a face with specified dimensions along OX-OY coordinate axes,
1122         #  with edges, parallel to this coordinate axes.
1123         #  @param theH height of Face.
1124         #  @param theW width of Face.
1125         #  @param theOrientation orientation belong axis OXY OYZ OZX
1126         #  @return New GEOM_Object, containing the created face.
1127         #
1128         #  @ref tui_creation_face "Example"
1129         def MakeFaceHW(self,theH, theW, theOrientation):
1130             # Example: see GEOM_TestAll.py
1131             theH,theW,Parameters = ParseParameters(theH, theW)
1132             anObj = self.PrimOp.MakeFaceHW(theH, theW, theOrientation)
1133             RaiseIfFailed("MakeFaceHW", self.PrimOp)
1134             anObj.SetParameters(Parameters)
1135             return anObj
1136
1137         ## Create a face from another plane and two sizes,
1138         #  vertical size and horisontal size.
1139         #  @param theObj   Normale vector to the creating face or
1140         #  the face object.
1141         #  @param theH     Height (vertical size).
1142         #  @param theW     Width (horisontal size).
1143         #  @return New GEOM_Object, containing the created face.
1144         #
1145         #  @ref tui_creation_face "Example"
1146         def MakeFaceObjHW(self, theObj, theH, theW):
1147             # Example: see GEOM_TestAll.py
1148             theH,theW,Parameters = ParseParameters(theH, theW)
1149             anObj = self.PrimOp.MakeFaceObjHW(theObj, theH, theW)
1150             RaiseIfFailed("MakeFaceObjHW", self.PrimOp)
1151             anObj.SetParameters(Parameters)
1152             return anObj
1153
1154         ## Create a disk with given center, normal vector and radius.
1155         #  @param thePnt Disk center.
1156         #  @param theVec Vector, normal to the plane of the disk.
1157         #  @param theR Disk radius.
1158         #  @return New GEOM_Object, containing the created disk.
1159         #
1160         #  @ref tui_creation_disk "Example"
1161         def MakeDiskPntVecR(self,thePnt, theVec, theR):
1162             # Example: see GEOM_TestAll.py
1163             theR,Parameters = ParseParameters(theR)
1164             anObj = self.PrimOp.MakeDiskPntVecR(thePnt, theVec, theR)
1165             RaiseIfFailed("MakeDiskPntVecR", self.PrimOp)
1166             anObj.SetParameters(Parameters)
1167             return anObj
1168
1169         ## Create a disk, passing through three given points
1170         #  @param thePnt1,thePnt2,thePnt3 Points, defining the disk.
1171         #  @return New GEOM_Object, containing the created disk.
1172         #
1173         #  @ref tui_creation_disk "Example"
1174         def MakeDiskThreePnt(self,thePnt1, thePnt2, thePnt3):
1175             # Example: see GEOM_TestAll.py
1176             anObj = self.PrimOp.MakeDiskThreePnt(thePnt1, thePnt2, thePnt3)
1177             RaiseIfFailed("MakeDiskThreePnt", self.PrimOp)
1178             return anObj
1179
1180         ## Create a disk with specified dimensions along OX-OY coordinate axes.
1181         #  @param theR Radius of Face.
1182         #  @param theOrientation set the orientation belong axis OXY or OYZ or OZX
1183         #  @return New GEOM_Object, containing the created disk.
1184         #
1185         #  @ref tui_creation_face "Example"
1186         def MakeDiskR(self,theR, theOrientation):
1187             # Example: see GEOM_TestAll.py
1188             theR,Parameters = ParseParameters(theR)
1189             anObj = self.PrimOp.MakeDiskR(theR, theOrientation)
1190             RaiseIfFailed("MakeDiskR", self.PrimOp)
1191             anObj.SetParameters(Parameters)
1192             return anObj
1193
1194         ## Create a cylinder with given base point, axis, radius and height.
1195         #  @param thePnt Central point of cylinder base.
1196         #  @param theAxis Cylinder axis.
1197         #  @param theR Cylinder radius.
1198         #  @param theH Cylinder height.
1199         #  @return New GEOM_Object, containing the created cylinder.
1200         #
1201         #  @ref tui_creation_cylinder "Example"
1202         def MakeCylinder(self,thePnt, theAxis, theR, theH):
1203             # Example: see GEOM_TestAll.py
1204             theR,theH,Parameters = ParseParameters(theR, theH)
1205             anObj = self.PrimOp.MakeCylinderPntVecRH(thePnt, theAxis, theR, theH)
1206             RaiseIfFailed("MakeCylinderPntVecRH", self.PrimOp)
1207             anObj.SetParameters(Parameters)
1208             return anObj
1209
1210         ## Create a cylinder with given radius and height at
1211         #  the origin of coordinate system. Axis of the cylinder
1212         #  will be collinear to the OZ axis of the coordinate system.
1213         #  @param theR Cylinder radius.
1214         #  @param theH Cylinder height.
1215         #  @return New GEOM_Object, containing the created cylinder.
1216         #
1217         #  @ref tui_creation_cylinder "Example"
1218         def MakeCylinderRH(self,theR, theH):
1219             # Example: see GEOM_TestAll.py
1220             theR,theH,Parameters = ParseParameters(theR, theH)
1221             anObj = self.PrimOp.MakeCylinderRH(theR, theH)
1222             RaiseIfFailed("MakeCylinderRH", self.PrimOp)
1223             anObj.SetParameters(Parameters)
1224             return anObj
1225
1226         ## Create a sphere with given center and radius.
1227         #  @param thePnt Sphere center.
1228         #  @param theR Sphere radius.
1229         #  @return New GEOM_Object, containing the created sphere.
1230         #
1231         #  @ref tui_creation_sphere "Example"
1232         def MakeSpherePntR(self, thePnt, theR):
1233             # Example: see GEOM_TestAll.py
1234             theR,Parameters = ParseParameters(theR)
1235             anObj = self.PrimOp.MakeSpherePntR(thePnt, theR)
1236             RaiseIfFailed("MakeSpherePntR", self.PrimOp)
1237             anObj.SetParameters(Parameters)
1238             return anObj
1239
1240         ## Create a sphere with given center and radius.
1241         #  @param x,y,z Coordinates of sphere center.
1242         #  @param theR Sphere radius.
1243         #  @return New GEOM_Object, containing the created sphere.
1244         #
1245         #  @ref tui_creation_sphere "Example"
1246         def MakeSphere(self, x, y, z, theR):
1247             # Example: see GEOM_TestAll.py
1248             point = self.MakeVertex(x, y, z)
1249             anObj = self.MakeSpherePntR(point, theR)
1250             return anObj
1251
1252         ## Create a sphere with given radius at the origin of coordinate system.
1253         #  @param theR Sphere radius.
1254         #  @return New GEOM_Object, containing the created sphere.
1255         #
1256         #  @ref tui_creation_sphere "Example"
1257         def MakeSphereR(self, theR):
1258             # Example: see GEOM_TestAll.py
1259             theR,Parameters = ParseParameters(theR)
1260             anObj = self.PrimOp.MakeSphereR(theR)
1261             RaiseIfFailed("MakeSphereR", self.PrimOp)
1262             anObj.SetParameters(Parameters)
1263             return anObj
1264
1265         ## Create a cone with given base point, axis, height and radiuses.
1266         #  @param thePnt Central point of the first cone base.
1267         #  @param theAxis Cone axis.
1268         #  @param theR1 Radius of the first cone base.
1269         #  @param theR2 Radius of the second cone base.
1270         #    \note If both radiuses are non-zero, the cone will be truncated.
1271         #    \note If the radiuses are equal, a cylinder will be created instead.
1272         #  @param theH Cone height.
1273         #  @return New GEOM_Object, containing the created cone.
1274         #
1275         #  @ref tui_creation_cone "Example"
1276         def MakeCone(self,thePnt, theAxis, theR1, theR2, theH):
1277             # Example: see GEOM_TestAll.py
1278             theR1,theR2,theH,Parameters = ParseParameters(theR1,theR2,theH)
1279             anObj = self.PrimOp.MakeConePntVecR1R2H(thePnt, theAxis, theR1, theR2, theH)
1280             RaiseIfFailed("MakeConePntVecR1R2H", self.PrimOp)
1281             anObj.SetParameters(Parameters)
1282             return anObj
1283
1284         ## Create a cone with given height and radiuses at
1285         #  the origin of coordinate system. Axis of the cone will
1286         #  be collinear to the OZ axis of the coordinate system.
1287         #  @param theR1 Radius of the first cone base.
1288         #  @param theR2 Radius of the second cone base.
1289         #    \note If both radiuses are non-zero, the cone will be truncated.
1290         #    \note If the radiuses are equal, a cylinder will be created instead.
1291         #  @param theH Cone height.
1292         #  @return New GEOM_Object, containing the created cone.
1293         #
1294         #  @ref tui_creation_cone "Example"
1295         def MakeConeR1R2H(self,theR1, theR2, theH):
1296             # Example: see GEOM_TestAll.py
1297             theR1,theR2,theH,Parameters = ParseParameters(theR1,theR2,theH)
1298             anObj = self.PrimOp.MakeConeR1R2H(theR1, theR2, theH)
1299             RaiseIfFailed("MakeConeR1R2H", self.PrimOp)
1300             anObj.SetParameters(Parameters)
1301             return anObj
1302
1303         ## Create a torus with given center, normal vector and radiuses.
1304         #  @param thePnt Torus central point.
1305         #  @param theVec Torus axis of symmetry.
1306         #  @param theRMajor Torus major radius.
1307         #  @param theRMinor Torus minor radius.
1308         #  @return New GEOM_Object, containing the created torus.
1309         #
1310         #  @ref tui_creation_torus "Example"
1311         def MakeTorus(self, thePnt, theVec, theRMajor, theRMinor):
1312             # Example: see GEOM_TestAll.py
1313             theRMajor,theRMinor,Parameters = ParseParameters(theRMajor,theRMinor)
1314             anObj = self.PrimOp.MakeTorusPntVecRR(thePnt, theVec, theRMajor, theRMinor)
1315             RaiseIfFailed("MakeTorusPntVecRR", self.PrimOp)
1316             anObj.SetParameters(Parameters)
1317             return anObj
1318
1319         ## Create a torus with given radiuses at the origin of coordinate system.
1320         #  @param theRMajor Torus major radius.
1321         #  @param theRMinor Torus minor radius.
1322         #  @return New GEOM_Object, containing the created torus.
1323         #
1324         #  @ref tui_creation_torus "Example"
1325         def MakeTorusRR(self, theRMajor, theRMinor):
1326             # Example: see GEOM_TestAll.py
1327             theRMajor,theRMinor,Parameters = ParseParameters(theRMajor,theRMinor)
1328             anObj = self.PrimOp.MakeTorusRR(theRMajor, theRMinor)
1329             RaiseIfFailed("MakeTorusRR", self.PrimOp)
1330             anObj.SetParameters(Parameters)
1331             return anObj
1332
1333         # end of l3_3d_primitives
1334         ## @}
1335
1336         ## @addtogroup l3_complex
1337         ## @{
1338
1339         ## Create a shape by extrusion of the base shape along a vector, defined by two points.
1340         #  @param theBase Base shape to be extruded.
1341         #  @param thePoint1 First end of extrusion vector.
1342         #  @param thePoint2 Second end of extrusion vector.
1343         #  @param theScaleFactor Use it to make prism with scaled second base.
1344         #                        Nagative value means not scaled second base.
1345         #  @return New GEOM_Object, containing the created prism.
1346         #
1347         #  @ref tui_creation_prism "Example"
1348         def MakePrism(self, theBase, thePoint1, thePoint2, theScaleFactor = -1.0):
1349             # Example: see GEOM_TestAll.py
1350             anObj = None
1351             Parameters = ""
1352             if theScaleFactor > 0:
1353                 theScaleFactor,Parameters = ParseParameters(theScaleFactor)
1354                 anObj = self.PrimOp.MakePrismTwoPntWithScaling(theBase, thePoint1, thePoint2, theScaleFactor)
1355             else:
1356                 anObj = self.PrimOp.MakePrismTwoPnt(theBase, thePoint1, thePoint2)
1357             RaiseIfFailed("MakePrismTwoPnt", self.PrimOp)
1358             anObj.SetParameters(Parameters)
1359             return anObj
1360
1361         ## Create a shape by extrusion of the base shape along a
1362         #  vector, defined by two points, in 2 Ways (forward/backward).
1363         #  @param theBase Base shape to be extruded.
1364         #  @param thePoint1 First end of extrusion vector.
1365         #  @param thePoint2 Second end of extrusion vector.
1366         #  @return New GEOM_Object, containing the created prism.
1367         #
1368         #  @ref tui_creation_prism "Example"
1369         def MakePrism2Ways(self, theBase, thePoint1, thePoint2):
1370             # Example: see GEOM_TestAll.py
1371             anObj = self.PrimOp.MakePrismTwoPnt2Ways(theBase, thePoint1, thePoint2)
1372             RaiseIfFailed("MakePrismTwoPnt", self.PrimOp)
1373             return anObj
1374
1375         ## Create a shape by extrusion of the base shape along the vector,
1376         #  i.e. all the space, transfixed by the base shape during its translation
1377         #  along the vector on the given distance.
1378         #  @param theBase Base shape to be extruded.
1379         #  @param theVec Direction of extrusion.
1380         #  @param theH Prism dimension along theVec.
1381         #  @param theScaleFactor Use it to make prism with scaled second base.
1382         #                        Nagative value means not scaled second base.
1383         #  @return New GEOM_Object, containing the created prism.
1384         #
1385         #  @ref tui_creation_prism "Example"
1386         def MakePrismVecH(self, theBase, theVec, theH, theScaleFactor = -1.0):
1387             # Example: see GEOM_TestAll.py
1388             anObj = None
1389             Parameters = ""
1390             if theScaleFactor > 0:
1391                 theH,theScaleFactor,Parameters = ParseParameters(theH,theScaleFactor)
1392                 anObj = self.PrimOp.MakePrismVecHWithScaling(theBase, theVec, theH, theScaleFactor)
1393             else:
1394                 theH,Parameters = ParseParameters(theH)
1395                 anObj = self.PrimOp.MakePrismVecH(theBase, theVec, theH)
1396             RaiseIfFailed("MakePrismVecH", self.PrimOp)
1397             anObj.SetParameters(Parameters)
1398             return anObj
1399
1400         ## Create a shape by extrusion of the base shape along the vector,
1401         #  i.e. all the space, transfixed by the base shape during its translation
1402         #  along the vector on the given distance in 2 Ways (forward/backward).
1403         #  @param theBase Base shape to be extruded.
1404         #  @param theVec Direction of extrusion.
1405         #  @param theH Prism dimension along theVec in forward direction.
1406         #  @return New GEOM_Object, containing the created prism.
1407         #
1408         #  @ref tui_creation_prism "Example"
1409         def MakePrismVecH2Ways(self, theBase, theVec, theH):
1410             # Example: see GEOM_TestAll.py
1411             theH,Parameters = ParseParameters(theH)
1412             anObj = self.PrimOp.MakePrismVecH2Ways(theBase, theVec, theH)
1413             RaiseIfFailed("MakePrismVecH2Ways", self.PrimOp)
1414             anObj.SetParameters(Parameters)
1415             return anObj
1416
1417         ## Create a shape by extrusion of the base shape along the dx, dy, dz direction
1418         #  @param theBase Base shape to be extruded.
1419         #  @param theDX, theDY, theDZ Directions of extrusion.
1420         #  @param theScaleFactor Use it to make prism with scaled second base.
1421         #                        Nagative value means not scaled second base.
1422         #  @return New GEOM_Object, containing the created prism.
1423         #
1424         #  @ref tui_creation_prism "Example"
1425         def MakePrismDXDYDZ(self, theBase, theDX, theDY, theDZ, theScaleFactor = -1.0):
1426             # Example: see GEOM_TestAll.py
1427             anObj = None
1428             Parameters = ""
1429             if theScaleFactor > 0:
1430                 theDX,theDY,theDZ,theScaleFactor,Parameters = ParseParameters(theDX, theDY, theDZ, theScaleFactor)
1431                 anObj = self.PrimOp.MakePrismDXDYDZWithScaling(theBase, theDX, theDY, theDZ, theScaleFactor)
1432             else:
1433                 theDX,theDY,theDZ,Parameters = ParseParameters(theDX, theDY, theDZ)
1434                 anObj = self.PrimOp.MakePrismDXDYDZ(theBase, theDX, theDY, theDZ)
1435             RaiseIfFailed("MakePrismDXDYDZ", self.PrimOp)
1436             anObj.SetParameters(Parameters)
1437             return anObj
1438
1439         ## Create a shape by extrusion of the base shape along the dx, dy, dz direction
1440         #  i.e. all the space, transfixed by the base shape during its translation
1441         #  along the vector on the given distance in 2 Ways (forward/backward).
1442         #  @param theBase Base shape to be extruded.
1443         #  @param theDX, theDY, theDZ Directions of extrusion.
1444         #  @return New GEOM_Object, containing the created prism.
1445         #
1446         #  @ref tui_creation_prism "Example"
1447         def MakePrismDXDYDZ2Ways(self, theBase, theDX, theDY, theDZ):
1448             # Example: see GEOM_TestAll.py
1449             theDX,theDY,theDZ,Parameters = ParseParameters(theDX, theDY, theDZ)
1450             anObj = self.PrimOp.MakePrismDXDYDZ2Ways(theBase, theDX, theDY, theDZ)
1451             RaiseIfFailed("MakePrismDXDYDZ2Ways", self.PrimOp)
1452             anObj.SetParameters(Parameters)
1453             return anObj
1454
1455         ## Create a shape by revolution of the base shape around the axis
1456         #  on the given angle, i.e. all the space, transfixed by the base
1457         #  shape during its rotation around the axis on the given angle.
1458         #  @param theBase Base shape to be rotated.
1459         #  @param theAxis Rotation axis.
1460         #  @param theAngle Rotation angle in radians.
1461         #  @return New GEOM_Object, containing the created revolution.
1462         #
1463         #  @ref tui_creation_revolution "Example"
1464         def MakeRevolution(self, theBase, theAxis, theAngle):
1465             # Example: see GEOM_TestAll.py
1466             theAngle,Parameters = ParseParameters(theAngle)
1467             anObj = self.PrimOp.MakeRevolutionAxisAngle(theBase, theAxis, theAngle)
1468             RaiseIfFailed("MakeRevolutionAxisAngle", self.PrimOp)
1469             anObj.SetParameters(Parameters)
1470             return anObj
1471
1472         ## The Same Revolution but in both ways forward&backward.
1473         def MakeRevolution2Ways(self, theBase, theAxis, theAngle):
1474             theAngle,Parameters = ParseParameters(theAngle)
1475             anObj = self.PrimOp.MakeRevolutionAxisAngle2Ways(theBase, theAxis, theAngle)
1476             RaiseIfFailed("MakeRevolutionAxisAngle2Ways", self.PrimOp)
1477             anObj.SetParameters(Parameters)
1478             return anObj
1479
1480         ## Create a filling from the given compound of contours.
1481         #  @param theShape the compound of contours
1482         #  @param theMinDeg a minimal degree of BSpline surface to create
1483         #  @param theMaxDeg a maximal degree of BSpline surface to create
1484         #  @param theTol2D a 2d tolerance to be reached
1485         #  @param theTol3D a 3d tolerance to be reached
1486         #  @param theNbIter a number of iteration of approximation algorithm
1487         #  @param theMethod Kind of method to perform filling operation:
1488         #                   GEOM.FOM_Default - Default - standard behaviour
1489         #                   /GEOM.FOM_UseOri - Use edges orientation - orientation of edges is
1490         #                       used: if the edge is reversed, the curve from this edge
1491         #                       is reversed before using it in the filling algorithm.
1492         #                   /GEOM.FOM_AutoCorrect - Auto-correct orientation - changes the orientation
1493         #                       of the curves using minimization of sum of distances
1494         #                       between the end points of the edges.
1495         #  @param isApprox if True, BSpline curves are generated in the process
1496         #                  of surface construction. By default it is False, that means
1497         #                  the surface is created using Besier curves. The usage of
1498         #                  Approximation makes the algorithm work slower, but allows
1499         #                  building the surface for rather complex cases
1500         #  @return New GEOM_Object, containing the created filling surface.
1501         #
1502         #  @ref tui_creation_filling "Example"
1503         def MakeFilling(self, theShape, theMinDeg, theMaxDeg, theTol2D,
1504                         theTol3D, theNbIter, theMethod=GEOM.FOM_Default, isApprox=0):
1505             # Example: see GEOM_TestAll.py
1506             theMinDeg,theMaxDeg,theTol2D,theTol3D,theNbIter,Parameters = ParseParameters(theMinDeg, theMaxDeg, theTol2D, theTol3D, theNbIter)
1507             anObj = self.PrimOp.MakeFilling(theShape, theMinDeg, theMaxDeg,
1508                                             theTol2D, theTol3D, theNbIter,
1509                                             theMethod, isApprox)
1510             RaiseIfFailed("MakeFilling", self.PrimOp)
1511             anObj.SetParameters(Parameters)
1512             return anObj
1513
1514         ## Create a shell or solid passing through set of sections.Sections should be wires,edges or vertices.
1515         #  @param theSeqSections - set of specified sections.
1516         #  @param theModeSolid - mode defining building solid or shell
1517         #  @param thePreci - precision 3D used for smoothing by default 1.e-6
1518         #  @param theRuled - mode defining type of the result surfaces (ruled or smoothed).
1519         #  @return New GEOM_Object, containing the created shell or solid.
1520         #
1521         #  @ref swig_todo "Example"
1522         def MakeThruSections(self,theSeqSections,theModeSolid,thePreci,theRuled):
1523             # Example: see GEOM_TestAll.py
1524             anObj = self.PrimOp.MakeThruSections(theSeqSections,theModeSolid,thePreci,theRuled)
1525             RaiseIfFailed("MakeThruSections", self.PrimOp)
1526             return anObj
1527
1528         ## Create a shape by extrusion of the base shape along
1529         #  the path shape. The path shape can be a wire or an edge.
1530         #  @param theBase Base shape to be extruded.
1531         #  @param thePath Path shape to extrude the base shape along it.
1532         #  @return New GEOM_Object, containing the created pipe.
1533         #
1534         #  @ref tui_creation_pipe "Example"
1535         def MakePipe(self,theBase, thePath):
1536             # Example: see GEOM_TestAll.py
1537             anObj = self.PrimOp.MakePipe(theBase, thePath)
1538             RaiseIfFailed("MakePipe", self.PrimOp)
1539             return anObj
1540
1541         ## Create a shape by extrusion of the profile shape along
1542         #  the path shape. The path shape can be a wire or an edge.
1543         #  the several profiles can be specified in the several locations of path.
1544         #  @param theSeqBases - list of  Bases shape to be extruded.
1545         #  @param theLocations - list of locations on the path corresponding
1546         #                        specified list of the Bases shapes. Number of locations
1547         #                        should be equal to number of bases or list of locations can be empty.
1548         #  @param thePath - Path shape to extrude the base shape along it.
1549         #  @param theWithContact - the mode defining that the section is translated to be in
1550         #                          contact with the spine.
1551         #  @param theWithCorrection - defining that the section is rotated to be
1552         #                             orthogonal to the spine tangent in the correspondent point
1553         #  @return New GEOM_Object, containing the created pipe.
1554         #
1555         #  @ref tui_creation_pipe_with_diff_sec "Example"
1556         def MakePipeWithDifferentSections(self, theSeqBases,
1557                                           theLocations, thePath,
1558                                           theWithContact, theWithCorrection):
1559             anObj = self.PrimOp.MakePipeWithDifferentSections(theSeqBases,
1560                                                               theLocations, thePath,
1561                                                               theWithContact, theWithCorrection)
1562             RaiseIfFailed("MakePipeWithDifferentSections", self.PrimOp)
1563             return anObj
1564
1565         ## Create a shape by extrusion of the profile shape along
1566         #  the path shape. The path shape can be a wire or a edge.
1567         #  the several profiles can be specified in the several locations of path.
1568         #  @param theSeqBases - list of  Bases shape to be extruded. Base shape must be
1569         #                       shell or face. If number of faces in neighbour sections
1570         #                       aren't coincided result solid between such sections will
1571         #                       be created using external boundaries of this shells.
1572         #  @param theSeqSubBases - list of corresponding subshapes of section shapes.
1573         #                          This list is used for searching correspondences between
1574         #                          faces in the sections. Size of this list must be equal
1575         #                          to size of list of base shapes.
1576         #  @param theLocations - list of locations on the path corresponding
1577         #                        specified list of the Bases shapes. Number of locations
1578         #                        should be equal to number of bases. First and last
1579         #                        locations must be coincided with first and last vertexes
1580         #                        of path correspondingly.
1581         #  @param thePath - Path shape to extrude the base shape along it.
1582         #  @param theWithContact - the mode defining that the section is translated to be in
1583         #                          contact with the spine.
1584         #  @param theWithCorrection - defining that the section is rotated to be
1585         #                             orthogonal to the spine tangent in the correspondent point
1586         #  @return New GEOM_Object, containing the created solids.
1587         #
1588         #  @ref tui_creation_pipe_with_shell_sec "Example"
1589         def MakePipeWithShellSections(self,theSeqBases, theSeqSubBases,
1590                                       theLocations, thePath,
1591                                       theWithContact, theWithCorrection):
1592             anObj = self.PrimOp.MakePipeWithShellSections(theSeqBases, theSeqSubBases,
1593                                                           theLocations, thePath,
1594                                                           theWithContact, theWithCorrection)
1595             RaiseIfFailed("MakePipeWithShellSections", self.PrimOp)
1596             return anObj
1597
1598         ## Create a shape by extrusion of the profile shape along
1599         #  the path shape. This function is used only for debug pipe
1600         #  functionality - it is a version of previous function
1601         #  (MakePipeWithShellSections(...)) which give a possibility to
1602         #  recieve information about creating pipe between each pair of
1603         #  sections step by step.
1604         def MakePipeWithShellSectionsBySteps(self, theSeqBases, theSeqSubBases,
1605                                              theLocations, thePath,
1606                                              theWithContact, theWithCorrection):
1607             res = []
1608             nbsect = len(theSeqBases)
1609             nbsubsect = len(theSeqSubBases)
1610             #print "nbsect = ",nbsect
1611             for i in range(1,nbsect):
1612                 #print "  i = ",i
1613                 tmpSeqBases = [ theSeqBases[i-1], theSeqBases[i] ]
1614                 tmpLocations = [ theLocations[i-1], theLocations[i] ]
1615                 tmpSeqSubBases = []
1616                 if nbsubsect>0: tmpSeqSubBases = [ theSeqSubBases[i-1], theSeqSubBases[i] ]
1617                 anObj = self.PrimOp.MakePipeWithShellSections(tmpSeqBases, tmpSeqSubBases,
1618                                                               tmpLocations, thePath,
1619                                                               theWithContact, theWithCorrection)
1620                 if self.PrimOp.IsDone() == 0:
1621                     print "Problems with pipe creation between ",i," and ",i+1," sections"
1622                     RaiseIfFailed("MakePipeWithShellSections", self.PrimOp)
1623                     break
1624                 else:
1625                     print "Pipe between ",i," and ",i+1," sections is OK"
1626                     res.append(anObj)
1627                     pass
1628                 pass
1629
1630             resc = self.MakeCompound(res)
1631             #resc = self.MakeSewing(res, 0.001)
1632             #print "resc: ",resc
1633             return resc
1634
1635         ## Create solids between given sections
1636         #  @param theSeqBases - list of sections (shell or face).
1637         #  @param theLocations - list of corresponding vertexes
1638         #  @return New GEOM_Object, containing the created solids.
1639         #
1640         #  @ref tui_creation_pipe_without_path "Example"
1641         def MakePipeShellsWithoutPath(self, theSeqBases, theLocations):
1642             anObj = self.PrimOp.MakePipeShellsWithoutPath(theSeqBases, theLocations)
1643             RaiseIfFailed("MakePipeShellsWithoutPath", self.PrimOp)
1644             return anObj
1645
1646         ## Create a shape by extrusion of the base shape along
1647         #  the path shape with constant bi-normal direction along the given vector.
1648         #  The path shape can be a wire or an edge.
1649         #  @param theBase Base shape to be extruded.
1650         #  @param thePath Path shape to extrude the base shape along it.
1651         #  @param theVec Vector defines a constant binormal direction to keep the
1652         #                same angle beetween the direction and the sections
1653         #                along the sweep surface.
1654         #  @return New GEOM_Object, containing the created pipe.
1655         #
1656         #  @ref tui_creation_pipe "Example"
1657         def MakePipeBiNormalAlongVector(self,theBase, thePath, theVec):
1658             # Example: see GEOM_TestAll.py
1659             anObj = self.PrimOp.MakePipeBiNormalAlongVector(theBase, thePath, theVec)
1660             RaiseIfFailed("MakePipeBiNormalAlongVector", self.PrimOp)
1661             return anObj
1662
1663         # end of l3_complex
1664         ## @}
1665
1666         ## @addtogroup l3_advanced
1667         ## @{
1668
1669         ## Create a linear edge with specified ends.
1670         #  @param thePnt1 Point for the first end of edge.
1671         #  @param thePnt2 Point for the second end of edge.
1672         #  @return New GEOM_Object, containing the created edge.
1673         #
1674         #  @ref tui_creation_edge "Example"
1675         def MakeEdge(self,thePnt1, thePnt2):
1676             # Example: see GEOM_TestAll.py
1677             anObj = self.ShapesOp.MakeEdge(thePnt1, thePnt2)
1678             RaiseIfFailed("MakeEdge", self.ShapesOp)
1679             return anObj
1680
1681         ## Create a new edge, corresponding to the given length on the given curve.
1682         #  @param theRefCurve The referenced curve (edge).
1683         #  @param theLength Length on the referenced curve. It can be negative.
1684         #  @param theStartPoint Any point can be selected for it, the new edge will begin
1685         #                       at the end of \a theRefCurve, close to the selected point.
1686         #                       If None, start from the first point of \a theRefCurve.
1687         #  @return New GEOM_Object, containing the created edge.
1688         #
1689         #  @ref tui_creation_edge "Example"
1690         def MakeEdgeOnCurveByLength(self, theRefCurve, theLength, theStartPoint = None):
1691             # Example: see GEOM_TestAll.py
1692             theLength, Parameters = ParseParameters(theLength)
1693             anObj = self.ShapesOp.MakeEdgeOnCurveByLength(theRefCurve, theLength, theStartPoint)
1694             RaiseIfFailed("MakeEdgeOnCurveByLength", self.ShapesOp)
1695             anObj.SetParameters(Parameters)
1696             return anObj
1697
1698         ## Create an edge from specified wire.
1699         #  @param theWire source Wire.
1700         #  @param theLinearTolerance linear tolerance value.
1701         #  @param theAngularTolerance angular tolerance value.
1702         #  @return New GEOM_Object, containing the created edge.
1703         #
1704         #  @ref tui_creation_edge "Example"
1705         def MakeEdgeWire(self, theWire, theLinearTolerance = 1e-07, theAngularTolerance = 1e-12):
1706             # Example: see GEOM_TestAll.py
1707             anObj = self.ShapesOp.MakeEdgeWire(theWire, theLinearTolerance, theAngularTolerance)
1708             RaiseIfFailed("MakeEdgeWire", self.ShapesOp)
1709             return anObj
1710
1711         ## Create a wire from the set of edges and wires.
1712         #  @param theEdgesAndWires List of edges and/or wires.
1713         #  @param theTolerance Maximum distance between vertices, that will be merged.
1714         #                      Values less than 1e-07 are equivalent to 1e-07 (Precision::Confusion()).
1715         #  @return New GEOM_Object, containing the created wire.
1716         #
1717         #  @ref tui_creation_wire "Example"
1718         def MakeWire(self, theEdgesAndWires, theTolerance = 1e-07):
1719             # Example: see GEOM_TestAll.py
1720             anObj = self.ShapesOp.MakeWire(theEdgesAndWires, theTolerance)
1721             RaiseIfFailed("MakeWire", self.ShapesOp)
1722             return anObj
1723
1724         ## Create a face on the given wire.
1725         #  @param theWire closed Wire or Edge to build the face on.
1726         #  @param isPlanarWanted If TRUE, only planar face will be built.
1727         #                        If impossible, NULL object will be returned.
1728         #  @return New GEOM_Object, containing the created face.
1729         #
1730         #  @ref tui_creation_face "Example"
1731         def MakeFace(self,theWire, isPlanarWanted):
1732             # Example: see GEOM_TestAll.py
1733             anObj = self.ShapesOp.MakeFace(theWire, isPlanarWanted)
1734             RaiseIfFailed("MakeFace", self.ShapesOp)
1735             return anObj
1736
1737         ## Create a face on the given wires set.
1738         #  @param theWires List of closed wires or edges to build the face on.
1739         #  @param isPlanarWanted If TRUE, only planar face will be built.
1740         #                        If impossible, NULL object will be returned.
1741         #  @return New GEOM_Object, containing the created face.
1742         #
1743         #  @ref tui_creation_face "Example"
1744         def MakeFaceWires(self,theWires, isPlanarWanted):
1745             # Example: see GEOM_TestAll.py
1746             anObj = self.ShapesOp.MakeFaceWires(theWires, isPlanarWanted)
1747             RaiseIfFailed("MakeFaceWires", self.ShapesOp)
1748             return anObj
1749
1750         ## Shortcut to MakeFaceWires()
1751         #
1752         #  @ref tui_creation_face "Example 1"
1753         #  \n @ref swig_MakeFaces  "Example 2"
1754         def MakeFaces(self,theWires, isPlanarWanted):
1755             # Example: see GEOM_TestOthers.py
1756             anObj = self.MakeFaceWires(theWires, isPlanarWanted)
1757             return anObj
1758
1759         ## Create a shell from the set of faces and shells.
1760         #  @param theFacesAndShells List of faces and/or shells.
1761         #  @return New GEOM_Object, containing the created shell.
1762         #
1763         #  @ref tui_creation_shell "Example"
1764         def MakeShell(self,theFacesAndShells):
1765             # Example: see GEOM_TestAll.py
1766             anObj = self.ShapesOp.MakeShell(theFacesAndShells)
1767             RaiseIfFailed("MakeShell", self.ShapesOp)
1768             return anObj
1769
1770         ## Create a solid, bounded by the given shells.
1771         #  @param theShells Sequence of bounding shells.
1772         #  @return New GEOM_Object, containing the created solid.
1773         #
1774         #  @ref tui_creation_solid "Example"
1775         def MakeSolid(self,theShells):
1776             # Example: see GEOM_TestAll.py
1777             anObj = self.ShapesOp.MakeSolidShells(theShells)
1778             RaiseIfFailed("MakeSolidShells", self.ShapesOp)
1779             return anObj
1780
1781         ## Create a compound of the given shapes.
1782         #  @param theShapes List of shapes to put in compound.
1783         #  @return New GEOM_Object, containing the created compound.
1784         #
1785         #  @ref tui_creation_compound "Example"
1786         def MakeCompound(self,theShapes):
1787             # Example: see GEOM_TestAll.py
1788             anObj = self.ShapesOp.MakeCompound(theShapes)
1789             RaiseIfFailed("MakeCompound", self.ShapesOp)
1790             return anObj
1791
1792         # end of l3_advanced
1793         ## @}
1794
1795         ## @addtogroup l2_measure
1796         ## @{
1797
1798         ## Gives quantity of faces in the given shape.
1799         #  @param theShape Shape to count faces of.
1800         #  @return Quantity of faces.
1801         #
1802         #  @ref swig_NumberOf "Example"
1803         def NumberOfFaces(self, theShape):
1804             # Example: see GEOM_TestOthers.py
1805             nb_faces = self.ShapesOp.NumberOfFaces(theShape)
1806             RaiseIfFailed("NumberOfFaces", self.ShapesOp)
1807             return nb_faces
1808
1809         ## Gives quantity of edges in the given shape.
1810         #  @param theShape Shape to count edges of.
1811         #  @return Quantity of edges.
1812         #
1813         #  @ref swig_NumberOf "Example"
1814         def NumberOfEdges(self, theShape):
1815             # Example: see GEOM_TestOthers.py
1816             nb_edges = self.ShapesOp.NumberOfEdges(theShape)
1817             RaiseIfFailed("NumberOfEdges", self.ShapesOp)
1818             return nb_edges
1819
1820         ## Gives quantity of subshapes of type theShapeType in the given shape.
1821         #  @param theShape Shape to count subshapes of.
1822         #  @param theShapeType Type of subshapes to count.
1823         #  @return Quantity of subshapes of given type.
1824         #
1825         #  @ref swig_NumberOf "Example"
1826         def NumberOfSubShapes(self, theShape, theShapeType):
1827             # Example: see GEOM_TestOthers.py
1828             nb_ss = self.ShapesOp.NumberOfSubShapes(theShape, theShapeType)
1829             RaiseIfFailed("NumberOfSubShapes", self.ShapesOp)
1830             return nb_ss
1831
1832         ## Gives quantity of solids in the given shape.
1833         #  @param theShape Shape to count solids in.
1834         #  @return Quantity of solids.
1835         #
1836         #  @ref swig_NumberOf "Example"
1837         def NumberOfSolids(self, theShape):
1838             # Example: see GEOM_TestOthers.py
1839             nb_solids = self.ShapesOp.NumberOfSubShapes(theShape, ShapeType["SOLID"])
1840             RaiseIfFailed("NumberOfSolids", self.ShapesOp)
1841             return nb_solids
1842
1843         # end of l2_measure
1844         ## @}
1845
1846         ## @addtogroup l3_healing
1847         ## @{
1848
1849         ## Reverses an orientation the given shape.
1850         #  @param theShape Shape to be reversed.
1851         #  @return The reversed copy of theShape.
1852         #
1853         #  @ref swig_ChangeOrientation "Example"
1854         def ChangeOrientation(self,theShape):
1855             # Example: see GEOM_TestAll.py
1856             anObj = self.ShapesOp.ChangeOrientation(theShape)
1857             RaiseIfFailed("ChangeOrientation", self.ShapesOp)
1858             return anObj
1859
1860         ## Shortcut to ChangeOrientation()
1861         #
1862         #  @ref swig_OrientationChange "Example"
1863         def OrientationChange(self,theShape):
1864             # Example: see GEOM_TestOthers.py
1865             anObj = self.ChangeOrientation(theShape)
1866             return anObj
1867
1868         # end of l3_healing
1869         ## @}
1870
1871         ## @addtogroup l4_obtain
1872         ## @{
1873
1874         ## Retrieve all free faces from the given shape.
1875         #  Free face is a face, which is not shared between two shells of the shape.
1876         #  @param theShape Shape to find free faces in.
1877         #  @return List of IDs of all free faces, contained in theShape.
1878         #
1879         #  @ref tui_measurement_tools_page "Example"
1880         def GetFreeFacesIDs(self,theShape):
1881             # Example: see GEOM_TestOthers.py
1882             anIDs = self.ShapesOp.GetFreeFacesIDs(theShape)
1883             RaiseIfFailed("GetFreeFacesIDs", self.ShapesOp)
1884             return anIDs
1885
1886         ## Get all sub-shapes of theShape1 of the given type, shared with theShape2.
1887         #  @param theShape1 Shape to find sub-shapes in.
1888         #  @param theShape2 Shape to find shared sub-shapes with.
1889         #  @param theShapeType Type of sub-shapes to be retrieved.
1890         #  @return List of sub-shapes of theShape1, shared with theShape2.
1891         #
1892         #  @ref swig_GetSharedShapes "Example"
1893         def GetSharedShapes(self,theShape1, theShape2, theShapeType):
1894             # Example: see GEOM_TestOthers.py
1895             aList = self.ShapesOp.GetSharedShapes(theShape1, theShape2, theShapeType)
1896             RaiseIfFailed("GetSharedShapes", self.ShapesOp)
1897             return aList
1898
1899         ## Get all sub-shapes, shared by all shapes in the list <VAR>theShapes</VAR>.
1900         #  @param theShapes Shapes to find common sub-shapes of.
1901         #  @param theShapeType Type of sub-shapes to be retrieved.
1902         #  @return List of objects, that are sub-shapes of all given shapes.
1903         #
1904         #  @ref swig_GetSharedShapes "Example"
1905         def GetSharedShapesMulti(self, theShapes, theShapeType):
1906             # Example: see GEOM_TestOthers.py
1907             aList = self.ShapesOp.GetSharedShapesMulti(theShapes, theShapeType)
1908             RaiseIfFailed("GetSharedShapesMulti", self.ShapesOp)
1909             return aList
1910
1911         ## Find in <VAR>theShape</VAR> all sub-shapes of type <VAR>theShapeType</VAR>,
1912         #  situated relatively the specified plane by the certain way,
1913         #  defined through <VAR>theState</VAR> parameter.
1914         #  @param theShape Shape to find sub-shapes of.
1915         #  @param theShapeType Type of sub-shapes to be retrieved.
1916         #  @param theAx1 Vector (or line, or linear edge), specifying normal
1917         #                direction and location of the plane to find shapes on.
1918         #  @param theState The state of the subshapes to find. It can be one of
1919         #   ST_ON, ST_OUT, ST_ONOUT, ST_IN, ST_ONIN.
1920         #  @return List of all found sub-shapes.
1921         #
1922         #  @ref swig_GetShapesOnPlane "Example"
1923         def GetShapesOnPlane(self,theShape, theShapeType, theAx1, theState):
1924             # Example: see GEOM_TestOthers.py
1925             aList = self.ShapesOp.GetShapesOnPlane(theShape, theShapeType, theAx1, theState)
1926             RaiseIfFailed("GetShapesOnPlane", self.ShapesOp)
1927             return aList
1928
1929         ## Works like the above method, but returns list of sub-shapes indices
1930         #
1931         #  @ref swig_GetShapesOnPlaneIDs "Example"
1932         def GetShapesOnPlaneIDs(self,theShape, theShapeType, theAx1, theState):
1933             # Example: see GEOM_TestOthers.py
1934             aList = self.ShapesOp.GetShapesOnPlaneIDs(theShape, theShapeType, theAx1, theState)
1935             RaiseIfFailed("GetShapesOnPlaneIDs", self.ShapesOp)
1936             return aList
1937
1938         ## Find in <VAR>theShape</VAR> all sub-shapes of type <VAR>theShapeType</VAR>,
1939         #  situated relatively the specified plane by the certain way,
1940         #  defined through <VAR>theState</VAR> parameter.
1941         #  @param theShape Shape to find sub-shapes of.
1942         #  @param theShapeType Type of sub-shapes to be retrieved.
1943         #  @param theAx1 Vector (or line, or linear edge), specifying normal
1944         #                direction of the plane to find shapes on.
1945         #  @param thePnt Point specifying location of the plane to find shapes on.
1946         #  @param theState The state of the subshapes to find. It can be one of
1947         #                  ST_ON, ST_OUT, ST_ONOUT, ST_IN, ST_ONIN.
1948         #  @return List of all found sub-shapes.
1949         #
1950         #  @ref swig_GetShapesOnPlaneWithLocation "Example"
1951         def GetShapesOnPlaneWithLocation(self, theShape, theShapeType, theAx1, thePnt, theState):
1952             # Example: see GEOM_TestOthers.py
1953             aList = self.ShapesOp.GetShapesOnPlaneWithLocation(theShape, theShapeType,
1954                                                                theAx1, thePnt, theState)
1955             RaiseIfFailed("GetShapesOnPlaneWithLocation", self.ShapesOp)
1956             return aList
1957
1958         ## Works like the above method, but returns list of sub-shapes indices
1959         #
1960         #  @ref swig_GetShapesOnPlaneWithLocationIDs "Example"
1961         def GetShapesOnPlaneWithLocationIDs(self, theShape, theShapeType, theAx1, thePnt, theState):
1962             # Example: see GEOM_TestOthers.py
1963             aList = self.ShapesOp.GetShapesOnPlaneWithLocationIDs(theShape, theShapeType,
1964                                                                   theAx1, thePnt, theState)
1965             RaiseIfFailed("GetShapesOnPlaneWithLocationIDs", self.ShapesOp)
1966             return aList
1967
1968         ## Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
1969         #  the specified cylinder by the certain way, defined through \a theState parameter.
1970         #  @param theShape Shape to find sub-shapes of.
1971         #  @param theShapeType Type of sub-shapes to be retrieved.
1972         #  @param theAxis Vector (or line, or linear edge), specifying
1973         #                 axis of the cylinder to find shapes on.
1974         #  @param theRadius Radius of the cylinder to find shapes on.
1975         #  @param theState The state of the subshapes to find. It can be one of
1976         #   ST_ON, ST_OUT, ST_ONOUT, ST_IN, ST_ONIN.
1977         #  @return List of all found sub-shapes.
1978         #
1979         #  @ref swig_GetShapesOnCylinder "Example"
1980         def GetShapesOnCylinder(self, theShape, theShapeType, theAxis, theRadius, theState):
1981             # Example: see GEOM_TestOthers.py
1982             aList = self.ShapesOp.GetShapesOnCylinder(theShape, theShapeType, theAxis, theRadius, theState)
1983             RaiseIfFailed("GetShapesOnCylinder", self.ShapesOp)
1984             return aList
1985
1986         ## Works like the above method, but returns list of sub-shapes indices
1987         #
1988         #  @ref swig_GetShapesOnCylinderIDs "Example"
1989         def GetShapesOnCylinderIDs(self, theShape, theShapeType, theAxis, theRadius, theState):
1990             # Example: see GEOM_TestOthers.py
1991             aList = self.ShapesOp.GetShapesOnCylinderIDs(theShape, theShapeType, theAxis, theRadius, theState)
1992             RaiseIfFailed("GetShapesOnCylinderIDs", self.ShapesOp)
1993             return aList
1994
1995         ## Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
1996         #  the specified cylinder by the certain way, defined through \a theState parameter.
1997         #  @param theShape Shape to find sub-shapes of.
1998         #  @param theShapeType Type of sub-shapes to be retrieved.
1999         #  @param theAxis Vector (or line, or linear edge), specifying
2000         #                 axis of the cylinder to find shapes on.
2001         #  @param thePnt Point specifying location of the bottom of the cylinder.
2002         #  @param theRadius Radius of the cylinder to find shapes on.
2003         #  @param theState The state of the subshapes to find. It can be one of
2004         #   ST_ON, ST_OUT, ST_ONOUT, ST_IN, ST_ONIN.
2005         #  @return List of all found sub-shapes.
2006         #
2007         #  @ref swig_GetShapesOnCylinderWithLocation "Example"
2008         def GetShapesOnCylinderWithLocation(self, theShape, theShapeType, theAxis, thePnt, theRadius, theState):
2009             # Example: see GEOM_TestOthers.py
2010             aList = self.ShapesOp.GetShapesOnCylinderWithLocation(theShape, theShapeType, theAxis, thePnt, theRadius, theState)
2011             RaiseIfFailed("GetShapesOnCylinderWithLocation", self.ShapesOp)
2012             return aList
2013
2014         ## Works like the above method, but returns list of sub-shapes indices
2015         #
2016         #  @ref swig_GetShapesOnCylinderWithLocationIDs "Example"
2017         def GetShapesOnCylinderWithLocationIDs(self, theShape, theShapeType, theAxis, thePnt, theRadius, theState):
2018             # Example: see GEOM_TestOthers.py
2019             aList = self.ShapesOp.GetShapesOnCylinderWithLocationIDs(theShape, theShapeType, theAxis, thePnt, theRadius, theState)
2020             RaiseIfFailed("GetShapesOnCylinderWithLocationIDs", self.ShapesOp)
2021             return aList
2022
2023         ## Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
2024         #  the specified sphere by the certain way, defined through \a theState parameter.
2025         #  @param theShape Shape to find sub-shapes of.
2026         #  @param theShapeType Type of sub-shapes to be retrieved.
2027         #  @param theCenter Point, specifying center of the sphere to find shapes on.
2028         #  @param theRadius Radius of the sphere to find shapes on.
2029         #  @param theState The state of the subshapes to find. It can be one of
2030         #   ST_ON, ST_OUT, ST_ONOUT, ST_IN, ST_ONIN.
2031         #  @return List of all found sub-shapes.
2032         #
2033         #  @ref swig_GetShapesOnSphere "Example"
2034         def GetShapesOnSphere(self,theShape, theShapeType, theCenter, theRadius, theState):
2035             # Example: see GEOM_TestOthers.py
2036             aList = self.ShapesOp.GetShapesOnSphere(theShape, theShapeType, theCenter, theRadius, theState)
2037             RaiseIfFailed("GetShapesOnSphere", self.ShapesOp)
2038             return aList
2039
2040         ## Works like the above method, but returns list of sub-shapes indices
2041         #
2042         #  @ref swig_GetShapesOnSphereIDs "Example"
2043         def GetShapesOnSphereIDs(self,theShape, theShapeType, theCenter, theRadius, theState):
2044             # Example: see GEOM_TestOthers.py
2045             aList = self.ShapesOp.GetShapesOnSphereIDs(theShape, theShapeType, theCenter, theRadius, theState)
2046             RaiseIfFailed("GetShapesOnSphereIDs", self.ShapesOp)
2047             return aList
2048
2049         ## Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
2050         #  the specified quadrangle by the certain way, defined through \a theState parameter.
2051         #  @param theShape Shape to find sub-shapes of.
2052         #  @param theShapeType Type of sub-shapes to be retrieved.
2053         #  @param theTopLeftPoint Point, specifying top left corner of a quadrangle
2054         #  @param theTopRigthPoint Point, specifying top right corner of a quadrangle
2055         #  @param theBottomLeftPoint Point, specifying bottom left corner of a quadrangle
2056         #  @param theBottomRigthPoint Point, specifying bottom right corner of a quadrangle
2057         #  @param theState The state of the subshapes to find. It can be one of
2058         #                  ST_ON, ST_OUT, ST_ONOUT, ST_IN, ST_ONIN.
2059         #  @return List of all found sub-shapes.
2060         #
2061         #  @ref swig_GetShapesOnQuadrangle "Example"
2062         def GetShapesOnQuadrangle(self, theShape, theShapeType,
2063                                   theTopLeftPoint, theTopRigthPoint,
2064                                   theBottomLeftPoint, theBottomRigthPoint, theState):
2065             # Example: see GEOM_TestOthers.py
2066             aList = self.ShapesOp.GetShapesOnQuadrangle(theShape, theShapeType,
2067                                                         theTopLeftPoint, theTopRigthPoint,
2068                                                         theBottomLeftPoint, theBottomRigthPoint, theState)
2069             RaiseIfFailed("GetShapesOnQuadrangle", self.ShapesOp)
2070             return aList
2071
2072         ## Works like the above method, but returns list of sub-shapes indices
2073         #
2074         #  @ref swig_GetShapesOnQuadrangleIDs "Example"
2075         def GetShapesOnQuadrangleIDs(self, theShape, theShapeType,
2076                                      theTopLeftPoint, theTopRigthPoint,
2077                                      theBottomLeftPoint, theBottomRigthPoint, theState):
2078             # Example: see GEOM_TestOthers.py
2079             aList = self.ShapesOp.GetShapesOnQuadrangleIDs(theShape, theShapeType,
2080                                                            theTopLeftPoint, theTopRigthPoint,
2081                                                            theBottomLeftPoint, theBottomRigthPoint, theState)
2082             RaiseIfFailed("GetShapesOnQuadrangleIDs", self.ShapesOp)
2083             return aList
2084
2085         ## Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
2086         #  the specified \a theBox by the certain way, defined through \a theState parameter.
2087         #  @param theBox Shape for relative comparing.
2088         #  @param theShape Shape to find sub-shapes of.
2089         #  @param theShapeType Type of sub-shapes to be retrieved.
2090         #  @param theState The state of the subshapes to find. It can be one of
2091         #                  ST_ON, ST_OUT, ST_ONOUT, ST_IN, ST_ONIN.
2092         #  @return List of all found sub-shapes.
2093         #
2094         #  @ref swig_GetShapesOnBox "Example"
2095         def GetShapesOnBox(self, theBox, theShape, theShapeType, theState):
2096             # Example: see GEOM_TestOthers.py
2097             aList = self.ShapesOp.GetShapesOnBox(theBox, theShape, theShapeType, theState)
2098             RaiseIfFailed("GetShapesOnBox", self.ShapesOp)
2099             return aList
2100
2101         ## Works like the above method, but returns list of sub-shapes indices
2102         #
2103         #  @ref swig_GetShapesOnBoxIDs "Example"
2104         def GetShapesOnBoxIDs(self, theBox, theShape, theShapeType, theState):
2105             # Example: see GEOM_TestOthers.py
2106             aList = self.ShapesOp.GetShapesOnBoxIDs(theBox, theShape, theShapeType, theState)
2107             RaiseIfFailed("GetShapesOnBoxIDs", self.ShapesOp)
2108             return aList
2109
2110         ## Find in \a theShape all sub-shapes of type \a theShapeType,
2111         #  situated relatively the specified \a theCheckShape by the
2112         #  certain way, defined through \a theState parameter.
2113         #  @param theCheckShape Shape for relative comparing. It must be a solid.
2114         #  @param theShape Shape to find sub-shapes of.
2115         #  @param theShapeType Type of sub-shapes to be retrieved.
2116         #  @param theState The state of the subshapes to find. It can be one of
2117         #                  ST_ON, ST_OUT, ST_ONOUT, ST_IN, ST_ONIN.
2118         #  @return List of all found sub-shapes.
2119         #
2120         #  @ref swig_GetShapesOnShape "Example"
2121         def GetShapesOnShape(self, theCheckShape, theShape, theShapeType, theState):
2122             # Example: see GEOM_TestOthers.py
2123             aList = self.ShapesOp.GetShapesOnShape(theCheckShape, theShape,
2124                                                    theShapeType, theState)
2125             RaiseIfFailed("GetShapesOnShape", self.ShapesOp)
2126             return aList
2127
2128         ## Works like the above method, but returns result as compound
2129         #
2130         #  @ref swig_GetShapesOnShapeAsCompound "Example"
2131         def GetShapesOnShapeAsCompound(self, theCheckShape, theShape, theShapeType, theState):
2132             # Example: see GEOM_TestOthers.py
2133             anObj = self.ShapesOp.GetShapesOnShapeAsCompound(theCheckShape, theShape,
2134                                                              theShapeType, theState)
2135             RaiseIfFailed("GetShapesOnShapeAsCompound", self.ShapesOp)
2136             return anObj
2137
2138         ## Works like the above method, but returns list of sub-shapes indices
2139         #
2140         #  @ref swig_GetShapesOnShapeIDs "Example"
2141         def GetShapesOnShapeIDs(self, theCheckShape, theShape, theShapeType, theState):
2142             # Example: see GEOM_TestOthers.py
2143             aList = self.ShapesOp.GetShapesOnShapeIDs(theCheckShape, theShape,
2144                                                       theShapeType, theState)
2145             RaiseIfFailed("GetShapesOnShapeIDs", self.ShapesOp)
2146             return aList
2147
2148         ## Get sub-shape(s) of theShapeWhere, which are
2149         #  coincident with \a theShapeWhat or could be a part of it.
2150         #  @param theShapeWhere Shape to find sub-shapes of.
2151         #  @param theShapeWhat Shape, specifying what to find.
2152         #  @return Group of all found sub-shapes or a single found sub-shape.
2153         #
2154         #  @note This function has a restriction on argument shapes.
2155         #        If \a theShapeWhere has curved parts with significantly
2156         #        outstanding centres (i.e. the mass centre of a part is closer to
2157         #        \a theShapeWhat than to the part), such parts will not be found.
2158         #        @image html get_in_place_lost_part.png
2159         #
2160         #  @ref swig_GetInPlace "Example"
2161         def GetInPlace(self, theShapeWhere, theShapeWhat, isNewImplementation = False):
2162             # Example: see GEOM_TestOthers.py
2163             anObj = None
2164             if isNewImplementation:
2165                 anObj = self.ShapesOp.GetInPlace(theShapeWhere, theShapeWhat)
2166             else:
2167                 anObj = self.ShapesOp.GetInPlaceOld(theShapeWhere, theShapeWhat)
2168                 pass
2169             RaiseIfFailed("GetInPlace", self.ShapesOp)
2170             return anObj
2171
2172         ## Get sub-shape(s) of \a theShapeWhere, which are
2173         #  coincident with \a theShapeWhat or could be a part of it.
2174         #
2175         #  Implementation of this method is based on a saved history of an operation,
2176         #  produced \a theShapeWhere. The \a theShapeWhat must be among this operation's
2177         #  arguments (an argument shape or a sub-shape of an argument shape).
2178         #  The operation could be the Partition or one of boolean operations,
2179         #  performed on simple shapes (not on compounds).
2180         #
2181         #  @param theShapeWhere Shape to find sub-shapes of.
2182         #  @param theShapeWhat Shape, specifying what to find (must be in the
2183         #                      building history of the ShapeWhere).
2184         #  @return Group of all found sub-shapes or a single found sub-shape.
2185         #
2186         #  @ref swig_GetInPlace "Example"
2187         def GetInPlaceByHistory(self, theShapeWhere, theShapeWhat):
2188             # Example: see GEOM_TestOthers.py
2189             anObj = self.ShapesOp.GetInPlaceByHistory(theShapeWhere, theShapeWhat)
2190             RaiseIfFailed("GetInPlaceByHistory", self.ShapesOp)
2191             return anObj
2192
2193         ## Get sub-shape of theShapeWhere, which is
2194         #  equal to \a theShapeWhat.
2195         #  @param theShapeWhere Shape to find sub-shape of.
2196         #  @param theShapeWhat Shape, specifying what to find.
2197         #  @return New GEOM_Object for found sub-shape.
2198         #
2199         #  @ref swig_GetSame "Example"
2200         def GetSame(self,theShapeWhere, theShapeWhat):
2201             anObj = self.ShapesOp.GetSame(theShapeWhere, theShapeWhat)
2202             RaiseIfFailed("GetSame", self.ShapesOp)
2203             return anObj
2204
2205         # end of l4_obtain
2206         ## @}
2207
2208         ## @addtogroup l4_access
2209         ## @{
2210
2211         ## Obtain a composite sub-shape of <VAR>aShape</VAR>, composed from sub-shapes
2212         #  of aShape, selected by their unique IDs inside <VAR>aShape</VAR>
2213         #
2214         #  @ref swig_all_decompose "Example"
2215         def GetSubShape(self, aShape, ListOfID):
2216             # Example: see GEOM_TestAll.py
2217             anObj = self.AddSubShape(aShape,ListOfID)
2218             return anObj
2219
2220         ## Obtain unique ID of sub-shape <VAR>aSubShape</VAR> inside <VAR>aShape</VAR>
2221         #
2222         #  @ref swig_all_decompose "Example"
2223         def GetSubShapeID(self, aShape, aSubShape):
2224             # Example: see GEOM_TestAll.py
2225             anID = self.LocalOp.GetSubShapeIndex(aShape, aSubShape)
2226             RaiseIfFailed("GetSubShapeIndex", self.LocalOp)
2227             return anID
2228
2229         # end of l4_access
2230         ## @}
2231
2232         ## @addtogroup l4_decompose
2233         ## @{
2234
2235         ## Get all sub-shapes and groups of \a theShape,
2236         #  that were created already by any other methods.
2237         #  @param theShape Any shape.
2238         #  @param theGroupsOnly If this parameter is TRUE, only groups will be
2239         #                       returned, else all found sub-shapes and groups.
2240         #  @return List of existing sub-objects of \a theShape.
2241         #
2242         #  @ref swig_all_decompose "Example"
2243         def GetExistingSubObjects(self, theShape, theGroupsOnly = False):
2244             # Example: see GEOM_TestAll.py
2245             ListObj = self.ShapesOp.GetExistingSubObjects(theShape, theGroupsOnly)
2246             RaiseIfFailed("GetExistingSubObjects", self.ShapesOp)
2247             return ListObj
2248
2249         ## Get all groups of \a theShape,
2250         #  that were created already by any other methods.
2251         #  @param theShape Any shape.
2252         #  @return List of existing groups of \a theShape.
2253         #
2254         #  @ref swig_all_decompose "Example"
2255         def GetGroups(self, theShape):
2256             # Example: see GEOM_TestAll.py
2257             ListObj = self.ShapesOp.GetExistingSubObjects(theShape, True)
2258             RaiseIfFailed("GetExistingSubObjects", self.ShapesOp)
2259             return ListObj
2260
2261         ## Explode a shape on subshapes of a given type.
2262         #  If the shape itself matches the type, it is also returned.
2263         #  @param aShape Shape to be exploded.
2264         #  @param aType Type of sub-shapes to be retrieved.
2265         #  @return List of sub-shapes of type theShapeType, contained in theShape.
2266         #
2267         #  @ref swig_all_decompose "Example"
2268         def SubShapeAll(self, aShape, aType):
2269             # Example: see GEOM_TestAll.py
2270             ListObj = self.ShapesOp.MakeAllSubShapes(aShape, aType, False)
2271             RaiseIfFailed("SubShapeAll", self.ShapesOp)
2272             return ListObj
2273
2274         ## Explode a shape on subshapes of a given type.
2275         #  @param aShape Shape to be exploded.
2276         #  @param aType Type of sub-shapes to be retrieved.
2277         #  @return List of IDs of sub-shapes.
2278         #
2279         #  @ref swig_all_decompose "Example"
2280         def SubShapeAllIDs(self, aShape, aType):
2281             ListObj = self.ShapesOp.GetAllSubShapesIDs(aShape, aType, False)
2282             RaiseIfFailed("SubShapeAllIDs", self.ShapesOp)
2283             return ListObj
2284
2285         ## Obtain a compound of sub-shapes of <VAR>aShape</VAR>,
2286         #  selected by they indices in list of all sub-shapes of type <VAR>aType</VAR>.
2287         #  Each index is in range [1, Nb_Sub-Shapes_Of_Given_Type]
2288         #
2289         #  @ref swig_all_decompose "Example"
2290         def SubShape(self, aShape, aType, ListOfInd):
2291             # Example: see GEOM_TestAll.py
2292             ListOfIDs = []
2293             AllShapeIDsList = self.SubShapeAllIDs(aShape, aType)
2294             for ind in ListOfInd:
2295                 ListOfIDs.append(AllShapeIDsList[ind - 1])
2296             anObj = self.GetSubShape(aShape, ListOfIDs)
2297             return anObj
2298
2299         ## Explode a shape on subshapes of a given type.
2300         #  Sub-shapes will be sorted by coordinates of their gravity centers.
2301         #  If the shape itself matches the type, it is also returned.
2302         #  @param aShape Shape to be exploded.
2303         #  @param aType Type of sub-shapes to be retrieved.
2304         #  @return List of sub-shapes of type theShapeType, contained in theShape.
2305         #
2306         #  @ref swig_SubShapeAllSorted "Example"
2307         def SubShapeAllSortedCentres(self, aShape, aType):
2308             # Example: see GEOM_TestAll.py
2309             ListObj = self.ShapesOp.MakeAllSubShapes(aShape, aType, True)
2310             RaiseIfFailed("SubShapeAllSortedCentres", self.ShapesOp)
2311             return ListObj
2312
2313         ## Explode a shape on subshapes of a given type.
2314         #  Sub-shapes will be sorted by coordinates of their gravity centers.
2315         #  @param aShape Shape to be exploded.
2316         #  @param aType Type of sub-shapes to be retrieved.
2317         #  @return List of IDs of sub-shapes.
2318         #
2319         #  @ref swig_all_decompose "Example"
2320         def SubShapeAllSortedCentresIDs(self, aShape, aType):
2321             ListIDs = self.ShapesOp.GetAllSubShapesIDs(aShape, aType, True)
2322             RaiseIfFailed("SubShapeAllIDs", self.ShapesOp)
2323             return ListIDs
2324
2325         ## Obtain a compound of sub-shapes of <VAR>aShape</VAR>,
2326         #  selected by they indices in sorted list of all sub-shapes of type <VAR>aType</VAR>.
2327         #  Each index is in range [1, Nb_Sub-Shapes_Of_Given_Type]
2328         #
2329         #  @ref swig_all_decompose "Example"
2330         def SubShapeSortedCentres(self, aShape, aType, ListOfInd):
2331             # Example: see GEOM_TestAll.py
2332             ListOfIDs = []
2333             AllShapeIDsList = self.SubShapeAllSortedCentresIDs(aShape, aType)
2334             for ind in ListOfInd:
2335                 ListOfIDs.append(AllShapeIDsList[ind - 1])
2336             anObj = self.GetSubShape(aShape, ListOfIDs)
2337             return anObj
2338
2339         ## Extract shapes (excluding the main shape) of given type.
2340         #  @param aShape The shape.
2341         #  @param aType  The shape type.
2342         #  @param isSorted Boolean flag to switch sorting on/off.
2343         #  @return List of sub-shapes of type aType, contained in aShape.
2344         #
2345         #  @ref swig_FilletChamfer "Example"
2346         def ExtractShapes(self, aShape, aType, isSorted = False):
2347             # Example: see GEOM_TestAll.py
2348             ListObj = self.ShapesOp.ExtractSubShapes(aShape, aType, isSorted)
2349             RaiseIfFailed("ExtractSubShapes", self.ShapesOp)
2350             return ListObj
2351
2352         ## Get a set of sub shapes defined by their unique IDs inside <VAR>theMainShape</VAR>
2353         #  @param theMainShape Main shape.
2354         #  @param theIndices List of unique IDs of sub shapes inside <VAR>theMainShape</VAR>.
2355         #  @return List of GEOM_Objects, corresponding to found sub shapes.
2356         #
2357         #  @ref swig_all_decompose "Example"
2358         def SubShapes(self, aShape, anIDs):
2359             # Example: see GEOM_TestAll.py
2360             ListObj = self.ShapesOp.MakeSubShapes(aShape, anIDs)
2361             RaiseIfFailed("SubShapes", self.ShapesOp)
2362             return ListObj
2363
2364         # end of l4_decompose
2365         ## @}
2366
2367         ## @addtogroup l4_decompose_d
2368         ## @{
2369
2370         ## Deprecated method
2371         #  It works like SubShapeAllSortedCentres, but wrongly
2372         #  defines centres of faces, shells and solids.
2373         def SubShapeAllSorted(self, aShape, aType):
2374             ListObj = self.ShapesOp.MakeExplode(aShape, aType, True)
2375             RaiseIfFailed("MakeExplode", self.ShapesOp)
2376             return ListObj
2377
2378         ## Deprecated method
2379         #  It works like SubShapeAllSortedCentresIDs, but wrongly
2380         #  defines centres of faces, shells and solids.
2381         def SubShapeAllSortedIDs(self, aShape, aType):
2382             ListIDs = self.ShapesOp.SubShapeAllIDs(aShape, aType, True)
2383             RaiseIfFailed("SubShapeAllIDs", self.ShapesOp)
2384             return ListIDs
2385
2386         ## Deprecated method
2387         #  It works like SubShapeSortedCentres, but has a bug
2388         #  (wrongly defines centres of faces, shells and solids).
2389         def SubShapeSorted(self, aShape, aType, ListOfInd):
2390             ListOfIDs = []
2391             AllShapeIDsList = self.SubShapeAllSortedIDs(aShape, aType)
2392             for ind in ListOfInd:
2393                 ListOfIDs.append(AllShapeIDsList[ind - 1])
2394             anObj = self.GetSubShape(aShape, ListOfIDs)
2395             return anObj
2396
2397         # end of l4_decompose_d
2398         ## @}
2399
2400         ## @addtogroup l3_healing
2401         ## @{
2402
2403         ## Apply a sequence of Shape Healing operators to the given object.
2404         #  @param theShape Shape to be processed.
2405         #  @param theOperators List of names of operators ("FixShape", "SplitClosedFaces", etc.).
2406         #  @param theParameters List of names of parameters
2407         #                    ("FixShape.Tolerance3d", "SplitClosedFaces.NbSplitPoints", etc.).
2408         #  @param theValues List of values of parameters, in the same order
2409         #                    as parameters are listed in <VAR>theParameters</VAR> list.
2410         #  @return New GEOM_Object, containing processed shape.
2411         #
2412         #  @ref tui_shape_processing "Example"
2413         def ProcessShape(self, theShape, theOperators, theParameters, theValues):
2414             # Example: see GEOM_TestHealing.py
2415             theValues,Parameters = ParseList(theValues)
2416             anObj = self.HealOp.ProcessShape(theShape, theOperators, theParameters, theValues)
2417             # To avoid script failure in case of good argument shape
2418             if self.HealOp.GetErrorCode() == "ShHealOper_NotError_msg":
2419                 return theShape
2420             RaiseIfFailed("ProcessShape", self.HealOp)
2421             for string in (theOperators + theParameters):
2422                 Parameters = ":" + Parameters
2423                 pass
2424             anObj.SetParameters(Parameters)
2425             return anObj
2426
2427         ## Remove faces from the given object (shape).
2428         #  @param theObject Shape to be processed.
2429         #  @param theFaces Indices of faces to be removed, if EMPTY then the method
2430         #                  removes ALL faces of the given object.
2431         #  @return New GEOM_Object, containing processed shape.
2432         #
2433         #  @ref tui_suppress_faces "Example"
2434         def SuppressFaces(self,theObject, theFaces):
2435             # Example: see GEOM_TestHealing.py
2436             anObj = self.HealOp.SuppressFaces(theObject, theFaces)
2437             RaiseIfFailed("SuppressFaces", self.HealOp)
2438             return anObj
2439
2440         ## Sewing of some shapes into single shape.
2441         #
2442         #  @ref tui_sewing "Example"
2443         def MakeSewing(self, ListShape, theTolerance):
2444             # Example: see GEOM_TestHealing.py
2445             comp = self.MakeCompound(ListShape)
2446             anObj = self.Sew(comp, theTolerance)
2447             return anObj
2448
2449         ## Sewing of the given object.
2450         #  @param theObject Shape to be processed.
2451         #  @param theTolerance Required tolerance value.
2452         #  @return New GEOM_Object, containing processed shape.
2453         def Sew(self, theObject, theTolerance):
2454             # Example: see MakeSewing() above
2455             theTolerance,Parameters = ParseParameters(theTolerance)
2456             anObj = self.HealOp.Sew(theObject, theTolerance)
2457             RaiseIfFailed("Sew", self.HealOp)
2458             anObj.SetParameters(Parameters)
2459             return anObj
2460
2461         ## Remove internal wires and edges from the given object (face).
2462         #  @param theObject Shape to be processed.
2463         #  @param theWires Indices of wires to be removed, if EMPTY then the method
2464         #                  removes ALL internal wires of the given object.
2465         #  @return New GEOM_Object, containing processed shape.
2466         #
2467         #  @ref tui_suppress_internal_wires "Example"
2468         def SuppressInternalWires(self,theObject, theWires):
2469             # Example: see GEOM_TestHealing.py
2470             anObj = self.HealOp.RemoveIntWires(theObject, theWires)
2471             RaiseIfFailed("RemoveIntWires", self.HealOp)
2472             return anObj
2473
2474         ## Remove internal closed contours (holes) from the given object.
2475         #  @param theObject Shape to be processed.
2476         #  @param theWires Indices of wires to be removed, if EMPTY then the method
2477         #                  removes ALL internal holes of the given object
2478         #  @return New GEOM_Object, containing processed shape.
2479         #
2480         #  @ref tui_suppress_holes "Example"
2481         def SuppressHoles(self,theObject, theWires):
2482             # Example: see GEOM_TestHealing.py
2483             anObj = self.HealOp.FillHoles(theObject, theWires)
2484             RaiseIfFailed("FillHoles", self.HealOp)
2485             return anObj
2486
2487         ## Close an open wire.
2488         #  @param theObject Shape to be processed.
2489         #  @param theWires Indexes of edge(s) and wire(s) to be closed within <VAR>theObject</VAR>'s shape,
2490         #                  if [ ], then <VAR>theObject</VAR> itself is a wire.
2491         #  @param isCommonVertex If True  : closure by creation of a common vertex,
2492         #                        If False : closure by creation of an edge between ends.
2493         #  @return New GEOM_Object, containing processed shape.
2494         #
2495         #  @ref tui_close_contour "Example"
2496         def CloseContour(self,theObject, theWires, isCommonVertex):
2497             # Example: see GEOM_TestHealing.py
2498             anObj = self.HealOp.CloseContour(theObject, theWires, isCommonVertex)
2499             RaiseIfFailed("CloseContour", self.HealOp)
2500             return anObj
2501
2502         ## Addition of a point to a given edge object.
2503         #  @param theObject Shape to be processed.
2504         #  @param theEdgeIndex Index of edge to be divided within theObject's shape,
2505         #                      if -1, then theObject itself is the edge.
2506         #  @param theValue Value of parameter on edge or length parameter,
2507         #                  depending on \a isByParameter.
2508         #  @param isByParameter If TRUE : \a theValue is treated as a curve parameter [0..1],
2509         #                       if FALSE : \a theValue is treated as a length parameter [0..1]
2510         #  @return New GEOM_Object, containing processed shape.
2511         #
2512         #  @ref tui_add_point_on_edge "Example"
2513         def DivideEdge(self,theObject, theEdgeIndex, theValue, isByParameter):
2514             # Example: see GEOM_TestHealing.py
2515             theEdgeIndex,theValue,isByParameter,Parameters = ParseParameters(theEdgeIndex,theValue,isByParameter)
2516             anObj = self.HealOp.DivideEdge(theObject, theEdgeIndex, theValue, isByParameter)
2517             RaiseIfFailed("DivideEdge", self.HealOp)
2518             anObj.SetParameters(Parameters)
2519             return anObj
2520
2521         ## Change orientation of the given object. Updates given shape.
2522         #  @param theObject Shape to be processed.
2523         #
2524         #  @ref swig_todo "Example"
2525         def ChangeOrientationShell(self,theObject):
2526             theObject = self.HealOp.ChangeOrientation(theObject)
2527             RaiseIfFailed("ChangeOrientation", self.HealOp)
2528             pass
2529
2530         ## Change orientation of the given object.
2531         #  @param theObject Shape to be processed.
2532         #  @return New GEOM_Object, containing processed shape.
2533         #
2534         #  @ref swig_todo "Example"
2535         def ChangeOrientationShellCopy(self, theObject):
2536             anObj = self.HealOp.ChangeOrientationCopy(theObject)
2537             RaiseIfFailed("ChangeOrientationCopy", self.HealOp)
2538             return anObj
2539
2540         ## Try to limit tolerance of the given object by value \a theTolerance.
2541         #  @param theObject Shape to be processed.
2542         #  @param theTolerance Required tolerance value.
2543         #  @return New GEOM_Object, containing processed shape.
2544         #
2545         #  @ref tui_limit_tolerance "Example"
2546         def LimitTolerance(self, theObject, theTolerance = 1e-07):
2547             anObj = self.HealOp.LimitTolerance(theObject, theTolerance)
2548             RaiseIfFailed("LimitTolerance", self.HealOp)
2549             return anObj
2550
2551         ## Get a list of wires (wrapped in GEOM_Object-s),
2552         #  that constitute a free boundary of the given shape.
2553         #  @param theObject Shape to get free boundary of.
2554         #  @return [status, theClosedWires, theOpenWires]
2555         #  status: FALSE, if an error(s) occured during the method execution.
2556         #  theClosedWires: Closed wires on the free boundary of the given shape.
2557         #  theOpenWires: Open wires on the free boundary of the given shape.
2558         #
2559         #  @ref tui_measurement_tools_page "Example"
2560         def GetFreeBoundary(self, theObject):
2561             # Example: see GEOM_TestHealing.py
2562             anObj = self.HealOp.GetFreeBoundary(theObject)
2563             RaiseIfFailed("GetFreeBoundary", self.HealOp)
2564             return anObj
2565
2566         ## Replace coincident faces in theShape by one face.
2567         #  @param theShape Initial shape.
2568         #  @param theTolerance Maximum distance between faces, which can be considered as coincident.
2569         #  @param doKeepNonSolids If FALSE, only solids will present in the result,
2570         #                         otherwise all initial shapes.
2571         #  @return New GEOM_Object, containing a copy of theShape without coincident faces.
2572         #
2573         #  @ref tui_glue_faces "Example"
2574         def MakeGlueFaces(self, theShape, theTolerance, doKeepNonSolids=True):
2575             # Example: see GEOM_Spanner.py
2576             theTolerance,Parameters = ParseParameters(theTolerance)
2577             anObj = self.ShapesOp.MakeGlueFaces(theShape, theTolerance, doKeepNonSolids)
2578             if anObj is None:
2579                 raise RuntimeError, "MakeGlueFaces : " + self.ShapesOp.GetErrorCode()
2580             anObj.SetParameters(Parameters)
2581             return anObj
2582
2583         ## Find coincident faces in theShape for possible gluing.
2584         #  @param theShape Initial shape.
2585         #  @param theTolerance Maximum distance between faces,
2586         #                      which can be considered as coincident.
2587         #  @return ListOfGO.
2588         #
2589         #  @ref tui_glue_faces "Example"
2590         def GetGlueFaces(self, theShape, theTolerance):
2591             anObj = self.ShapesOp.GetGlueFaces(theShape, theTolerance)
2592             RaiseIfFailed("GetGlueFaces", self.ShapesOp)
2593             return anObj
2594
2595         ## Replace coincident faces in theShape by one face
2596         #  in compliance with given list of faces
2597         #  @param theShape Initial shape.
2598         #  @param theTolerance Maximum distance between faces,
2599         #                      which can be considered as coincident.
2600         #  @param theFaces List of faces for gluing.
2601         #  @param doKeepNonSolids If FALSE, only solids will present in the result,
2602         #                         otherwise all initial shapes.
2603         #  @param doGlueAllEdges If TRUE, all coincident edges of <VAR>theShape</VAR>
2604         #                        will be glued, otherwise only the edges,
2605         #                        belonging to <VAR>theFaces</VAR>.
2606         #  @return New GEOM_Object, containing a copy of theShape
2607         #          without some faces.
2608         #
2609         #  @ref tui_glue_faces "Example"
2610         def MakeGlueFacesByList(self, theShape, theTolerance, theFaces,
2611                                 doKeepNonSolids=True, doGlueAllEdges=True):
2612             anObj = self.ShapesOp.MakeGlueFacesByList(theShape, theTolerance, theFaces,
2613                                                       doKeepNonSolids, doGlueAllEdges)
2614             if anObj is None:
2615                 raise RuntimeError, "MakeGlueFacesByList : " + self.ShapesOp.GetErrorCode()
2616             return anObj
2617
2618         ## Replace coincident edges in theShape by one edge.
2619         #  @param theShape Initial shape.
2620         #  @param theTolerance Maximum distance between edges, which can be considered as coincident.
2621         #  @return New GEOM_Object, containing a copy of theShape without coincident edges.
2622         #
2623         #  @ref tui_glue_edges "Example"
2624         def MakeGlueEdges(self, theShape, theTolerance):
2625             theTolerance,Parameters = ParseParameters(theTolerance)
2626             anObj = self.ShapesOp.MakeGlueEdges(theShape, theTolerance)
2627             if anObj is None:
2628                 raise RuntimeError, "MakeGlueEdges : " + self.ShapesOp.GetErrorCode()
2629             anObj.SetParameters(Parameters)
2630             return anObj
2631
2632         ## Find coincident edges in theShape for possible gluing.
2633         #  @param theShape Initial shape.
2634         #  @param theTolerance Maximum distance between edges,
2635         #                      which can be considered as coincident.
2636         #  @return ListOfGO.
2637         #
2638         #  @ref tui_glue_edges "Example"
2639         def GetGlueEdges(self, theShape, theTolerance):
2640             anObj = self.ShapesOp.GetGlueEdges(theShape, theTolerance)
2641             RaiseIfFailed("GetGlueEdges", self.ShapesOp)
2642             return anObj
2643
2644         ## Replace coincident edges in theShape by one edge
2645         #  in compliance with given list of edges
2646         #  @param theShape Initial shape.
2647         #  @param theTolerance Maximum distance between edges,
2648         #                      which can be considered as coincident.
2649         #  @param theFaces List of edges for gluing.
2650         #  @return New GEOM_Object, containing a copy of theShape
2651         #          without some edges.
2652         #
2653         #  @ref tui_glue_edges "Example"
2654         def MakeGlueEdgesByList(self, theShape, theTolerance, theEdges):
2655             anObj = self.ShapesOp.MakeGlueEdgesByList(theShape, theTolerance, theEdges)
2656             if anObj is None:
2657                 raise RuntimeError, "MakeGlueEdgesByList : " + self.ShapesOp.GetErrorCode()
2658             return anObj
2659
2660         # end of l3_healing
2661         ## @}
2662
2663         ## @addtogroup l3_boolean Boolean Operations
2664         ## @{
2665
2666         # -----------------------------------------------------------------------------
2667         # Boolean (Common, Cut, Fuse, Section)
2668         # -----------------------------------------------------------------------------
2669
2670         ## Perform one of boolean operations on two given shapes.
2671         #  @param theShape1 First argument for boolean operation.
2672         #  @param theShape2 Second argument for boolean operation.
2673         #  @param theOperation Indicates the operation to be done:
2674         #                      1 - Common, 2 - Cut, 3 - Fuse, 4 - Section.
2675         #  @return New GEOM_Object, containing the result shape.
2676         #
2677         #  @ref tui_fuse "Example"
2678         def MakeBoolean(self,theShape1, theShape2, theOperation):
2679             # Example: see GEOM_TestAll.py
2680             anObj = self.BoolOp.MakeBoolean(theShape1, theShape2, theOperation)
2681             RaiseIfFailed("MakeBoolean", self.BoolOp)
2682             return anObj
2683
2684         ## Shortcut to MakeBoolean(s1, s2, 1)
2685         #
2686         #  @ref tui_common "Example 1"
2687         #  \n @ref swig_MakeCommon "Example 2"
2688         def MakeCommon(self, s1, s2):
2689             # Example: see GEOM_TestOthers.py
2690             return self.MakeBoolean(s1, s2, 1)
2691
2692         ## Shortcut to MakeBoolean(s1, s2, 2)
2693         #
2694         #  @ref tui_cut "Example 1"
2695         #  \n @ref swig_MakeCommon "Example 2"
2696         def MakeCut(self, s1, s2):
2697             # Example: see GEOM_TestOthers.py
2698             return self.MakeBoolean(s1, s2, 2)
2699
2700         ## Shortcut to MakeBoolean(s1, s2, 3)
2701         #
2702         #  @ref tui_fuse "Example 1"
2703         #  \n @ref swig_MakeCommon "Example 2"
2704         def MakeFuse(self, s1, s2):
2705             # Example: see GEOM_TestOthers.py
2706             return self.MakeBoolean(s1, s2, 3)
2707
2708         ## Shortcut to MakeBoolean(s1, s2, 4)
2709         #
2710         #  @ref tui_section "Example 1"
2711         #  \n @ref swig_MakeCommon "Example 2"
2712         def MakeSection(self, s1, s2):
2713             # Example: see GEOM_TestOthers.py
2714             return self.MakeBoolean(s1, s2, 4)
2715
2716         # end of l3_boolean
2717         ## @}
2718
2719         ## @addtogroup l3_basic_op
2720         ## @{
2721
2722         ## Perform partition operation.
2723         #  @param ListShapes Shapes to be intersected.
2724         #  @param ListTools Shapes to intersect theShapes.
2725         #  !!!NOTE: Each compound from ListShapes and ListTools will be exploded
2726         #           in order to avoid possible intersection between shapes from
2727         #           this compound.
2728         #  @param Limit Type of resulting shapes (corresponding to TopAbs_ShapeEnum).
2729         #         If this parameter is set to -1 ("Auto"), most appropriate shape limit
2730         #         type will be detected automatically.
2731         #  @param KeepNonlimitShapes: if this parameter == 0, then only shapes of
2732         #                             target type (equal to Limit) are kept in the result,
2733         #                             else standalone shapes of lower dimension
2734         #                             are kept also (if they exist).
2735         #
2736         #  After implementation new version of PartitionAlgo (October 2006)
2737         #  other parameters are ignored by current functionality. They are kept
2738         #  in this function only for support old versions.
2739         #  Ignored parameters:
2740         #      @param ListKeepInside Shapes, outside which the results will be deleted.
2741         #         Each shape from theKeepInside must belong to theShapes also.
2742         #      @param ListRemoveInside Shapes, inside which the results will be deleted.
2743         #         Each shape from theRemoveInside must belong to theShapes also.
2744         #      @param RemoveWebs If TRUE, perform Glue 3D algorithm.
2745         #      @param ListMaterials Material indices for each shape. Make sence,
2746         #         only if theRemoveWebs is TRUE.
2747         #
2748         #  @return New GEOM_Object, containing the result shapes.
2749         #
2750         #  @ref tui_partition "Example"
2751         def MakePartition(self, ListShapes, ListTools=[], ListKeepInside=[], ListRemoveInside=[],
2752                           Limit=ShapeType["AUTO"], RemoveWebs=0, ListMaterials=[],
2753                           KeepNonlimitShapes=0):
2754             # Example: see GEOM_TestAll.py
2755             if Limit == ShapeType["AUTO"]:
2756                 # automatic detection of the most appropriate shape limit type
2757                 lim = GEOM.SHAPE
2758                 for s in ListShapes: lim = min( lim, s.GetMaxShapeType() )
2759                 Limit = EnumToLong(lim)
2760                 pass
2761             anObj = self.BoolOp.MakePartition(ListShapes, ListTools,
2762                                               ListKeepInside, ListRemoveInside,
2763                                               Limit, RemoveWebs, ListMaterials,
2764                                               KeepNonlimitShapes);
2765             RaiseIfFailed("MakePartition", self.BoolOp)
2766             return anObj
2767
2768         ## Perform partition operation.
2769         #  This method may be useful if it is needed to make a partition for
2770         #  compound contains nonintersected shapes. Performance will be better
2771         #  since intersection between shapes from compound is not performed.
2772         #
2773         #  Description of all parameters as in previous method MakePartition()
2774         #
2775         #  !!!NOTE: Passed compounds (via ListShapes or via ListTools)
2776         #           have to consist of nonintersecting shapes.
2777         #
2778         #  @return New GEOM_Object, containing the result shapes.
2779         #
2780         #  @ref swig_todo "Example"
2781         def MakePartitionNonSelfIntersectedShape(self, ListShapes, ListTools=[],
2782                                                  ListKeepInside=[], ListRemoveInside=[],
2783                                                  Limit=ShapeType["AUTO"], RemoveWebs=0,
2784                                                  ListMaterials=[], KeepNonlimitShapes=0):
2785             if Limit == ShapeType["AUTO"]:
2786                 # automatic detection of the most appropriate shape limit type
2787                 lim = GEOM.SHAPE
2788                 for s in ListShapes: lim = min( lim, s.GetMaxShapeType() )
2789                 Limit = EnumToLong(lim)
2790                 pass
2791             anObj = self.BoolOp.MakePartitionNonSelfIntersectedShape(ListShapes, ListTools,
2792                                                                      ListKeepInside, ListRemoveInside,
2793                                                                      Limit, RemoveWebs, ListMaterials,
2794                                                                      KeepNonlimitShapes);
2795             RaiseIfFailed("MakePartitionNonSelfIntersectedShape", self.BoolOp)
2796             return anObj
2797
2798         ## Shortcut to MakePartition()
2799         #
2800         #  @ref tui_partition "Example 1"
2801         #  \n @ref swig_Partition "Example 2"
2802         def Partition(self, ListShapes, ListTools=[], ListKeepInside=[], ListRemoveInside=[],
2803                       Limit=ShapeType["AUTO"], RemoveWebs=0, ListMaterials=[],
2804                       KeepNonlimitShapes=0):
2805             # Example: see GEOM_TestOthers.py
2806             anObj = self.MakePartition(ListShapes, ListTools,
2807                                        ListKeepInside, ListRemoveInside,
2808                                        Limit, RemoveWebs, ListMaterials,
2809                                        KeepNonlimitShapes);
2810             return anObj
2811
2812         ## Perform partition of the Shape with the Plane
2813         #  @param theShape Shape to be intersected.
2814         #  @param thePlane Tool shape, to intersect theShape.
2815         #  @return New GEOM_Object, containing the result shape.
2816         #
2817         #  @ref tui_partition "Example"
2818         def MakeHalfPartition(self,theShape, thePlane):
2819             # Example: see GEOM_TestAll.py
2820             anObj = self.BoolOp.MakeHalfPartition(theShape, thePlane)
2821             RaiseIfFailed("MakeHalfPartition", self.BoolOp)
2822             return anObj
2823
2824         # end of l3_basic_op
2825         ## @}
2826
2827         ## @addtogroup l3_transform
2828         ## @{
2829
2830         ## Translate the given object along the vector, specified
2831         #  by its end points, creating its copy before the translation.
2832         #  @param theObject The object to be translated.
2833         #  @param thePoint1 Start point of translation vector.
2834         #  @param thePoint2 End point of translation vector.
2835         #  @return New GEOM_Object, containing the translated object.
2836         #
2837         #  @ref tui_translation "Example 1"
2838         #  \n @ref swig_MakeTranslationTwoPoints "Example 2"
2839         def MakeTranslationTwoPoints(self,theObject, thePoint1, thePoint2):
2840             # Example: see GEOM_TestAll.py
2841             anObj = self.TrsfOp.TranslateTwoPointsCopy(theObject, thePoint1, thePoint2)
2842             RaiseIfFailed("TranslateTwoPointsCopy", self.TrsfOp)
2843             return anObj
2844
2845         ## Translate the given object along the vector, specified by its components.
2846         #  @param theObject The object to be translated.
2847         #  @param theDX,theDY,theDZ Components of translation vector.
2848         #  @return Translated GEOM_Object.
2849         #
2850         #  @ref tui_translation "Example"
2851         def TranslateDXDYDZ(self,theObject, theDX, theDY, theDZ):
2852             # Example: see GEOM_TestAll.py
2853             theDX, theDY, theDZ, Parameters = ParseParameters(theDX, theDY, theDZ)
2854             anObj = self.TrsfOp.TranslateDXDYDZ(theObject, theDX, theDY, theDZ)
2855             anObj.SetParameters(Parameters)
2856             RaiseIfFailed("TranslateDXDYDZ", self.TrsfOp)
2857             return anObj
2858
2859         ## Translate the given object along the vector, specified
2860         #  by its components, creating its copy before the translation.
2861         #  @param theObject The object to be translated.
2862         #  @param theDX,theDY,theDZ Components of translation vector.
2863         #  @return New GEOM_Object, containing the translated object.
2864         #
2865         #  @ref tui_translation "Example"
2866         def MakeTranslation(self,theObject, theDX, theDY, theDZ):
2867             # Example: see GEOM_TestAll.py
2868             theDX, theDY, theDZ, Parameters = ParseParameters(theDX, theDY, theDZ)
2869             anObj = self.TrsfOp.TranslateDXDYDZCopy(theObject, theDX, theDY, theDZ)
2870             anObj.SetParameters(Parameters)
2871             RaiseIfFailed("TranslateDXDYDZ", self.TrsfOp)
2872             return anObj
2873
2874         ## Translate the given object along the given vector,
2875         #  creating its copy before the translation.
2876         #  @param theObject The object to be translated.
2877         #  @param theVector The translation vector.
2878         #  @return New GEOM_Object, containing the translated object.
2879         #
2880         #  @ref tui_translation "Example"
2881         def MakeTranslationVector(self,theObject, theVector):
2882             # Example: see GEOM_TestAll.py
2883             anObj = self.TrsfOp.TranslateVectorCopy(theObject, theVector)
2884             RaiseIfFailed("TranslateVectorCopy", self.TrsfOp)
2885             return anObj
2886
2887         ## Translate the given object along the given vector on given distance.
2888         #  @param theObject The object to be translated.
2889         #  @param theVector The translation vector.
2890         #  @param theDistance The translation distance.
2891         #  @param theCopy Flag used to translate object itself or create a copy.
2892         #  @return Translated GEOM_Object.
2893         #
2894         #  @ref tui_translation "Example"
2895         def TranslateVectorDistance(self, theObject, theVector, theDistance, theCopy):
2896             # Example: see GEOM_TestAll.py
2897             theDistance,Parameters = ParseParameters(theDistance)
2898             anObj = self.TrsfOp.TranslateVectorDistance(theObject, theVector, theDistance, theCopy)
2899             RaiseIfFailed("TranslateVectorDistance", self.TrsfOp)
2900             anObj.SetParameters(Parameters)
2901             return anObj
2902
2903         ## Translate the given object along the given vector on given distance,
2904         #  creating its copy before the translation.
2905         #  @param theObject The object to be translated.
2906         #  @param theVector The translation vector.
2907         #  @param theDistance The translation distance.
2908         #  @return New GEOM_Object, containing the translated object.
2909         #
2910         #  @ref tui_translation "Example"
2911         def MakeTranslationVectorDistance(self, theObject, theVector, theDistance):
2912             # Example: see GEOM_TestAll.py
2913             theDistance,Parameters = ParseParameters(theDistance)
2914             anObj = self.TrsfOp.TranslateVectorDistance(theObject, theVector, theDistance, 1)
2915             RaiseIfFailed("TranslateVectorDistance", self.TrsfOp)
2916             anObj.SetParameters(Parameters)
2917             return anObj
2918
2919         ## Rotate the given object around the given axis on the given angle.
2920         #  @param theObject The object to be rotated.
2921         #  @param theAxis Rotation axis.
2922         #  @param theAngle Rotation angle in radians.
2923         #  @return Rotated GEOM_Object.
2924         #
2925         #  @ref tui_rotation "Example"
2926         def Rotate(self,theObject, theAxis, theAngle):
2927             # Example: see GEOM_TestAll.py
2928             flag = False
2929             if isinstance(theAngle,str):
2930                 flag = True
2931             theAngle, Parameters = ParseParameters(theAngle)
2932             if flag:
2933                 theAngle = theAngle*math.pi/180.0
2934             anObj = self.TrsfOp.Rotate(theObject, theAxis, theAngle)
2935             RaiseIfFailed("RotateCopy", self.TrsfOp)
2936             anObj.SetParameters(Parameters)
2937             return anObj
2938
2939         ## Rotate the given object around the given axis
2940         #  on the given angle, creating its copy before the rotatation.
2941         #  @param theObject The object to be rotated.
2942         #  @param theAxis Rotation axis.
2943         #  @param theAngle Rotation angle in radians.
2944         #  @return New GEOM_Object, containing the rotated object.
2945         #
2946         #  @ref tui_rotation "Example"
2947         def MakeRotation(self,theObject, theAxis, theAngle):
2948             # Example: see GEOM_TestAll.py
2949             flag = False
2950             if isinstance(theAngle,str):
2951                 flag = True
2952             theAngle, Parameters = ParseParameters(theAngle)
2953             if flag:
2954                 theAngle = theAngle*math.pi/180.0
2955             anObj = self.TrsfOp.RotateCopy(theObject, theAxis, theAngle)
2956             RaiseIfFailed("RotateCopy", self.TrsfOp)
2957             anObj.SetParameters(Parameters)
2958             return anObj
2959
2960         ## Rotate given object around vector perpendicular to plane
2961         #  containing three points, creating its copy before the rotatation.
2962         #  @param theObject The object to be rotated.
2963         #  @param theCentPoint central point - the axis is the vector perpendicular to the plane
2964         #  containing the three points.
2965         #  @param thePoint1,thePoint2 - in a perpendicular plane of the axis.
2966         #  @return New GEOM_Object, containing the rotated object.
2967         #
2968         #  @ref tui_rotation "Example"
2969         def MakeRotationThreePoints(self,theObject, theCentPoint, thePoint1, thePoint2):
2970             # Example: see GEOM_TestAll.py
2971             anObj = self.TrsfOp.RotateThreePointsCopy(theObject, theCentPoint, thePoint1, thePoint2)
2972             RaiseIfFailed("RotateThreePointsCopy", self.TrsfOp)
2973             return anObj
2974
2975         ## Scale the given object by the factor, creating its copy before the scaling.
2976         #  @param theObject The object to be scaled.
2977         #  @param thePoint Center point for scaling.
2978         #                  Passing None for it means scaling relatively the origin of global CS.
2979         #  @param theFactor Scaling factor value.
2980         #  @return New GEOM_Object, containing the scaled shape.
2981         #
2982         #  @ref tui_scale "Example"
2983         def MakeScaleTransform(self, theObject, thePoint, theFactor):
2984             # Example: see GEOM_TestAll.py
2985             theFactor, Parameters = ParseParameters(theFactor)
2986             anObj = self.TrsfOp.ScaleShapeCopy(theObject, thePoint, theFactor)
2987             RaiseIfFailed("ScaleShapeCopy", self.TrsfOp)
2988             anObj.SetParameters(Parameters)
2989             return anObj
2990
2991         ## Scale the given object by different factors along coordinate axes,
2992         #  creating its copy before the scaling.
2993         #  @param theObject The object to be scaled.
2994         #  @param thePoint Center point for scaling.
2995         #                  Passing None for it means scaling relatively the origin of global CS.
2996         #  @param theFactorX,theFactorY,theFactorZ Scaling factors along each axis.
2997         #  @return New GEOM_Object, containing the scaled shape.
2998         #
2999         #  @ref swig_scale "Example"
3000         def MakeScaleAlongAxes(self, theObject, thePoint, theFactorX, theFactorY, theFactorZ):
3001             # Example: see GEOM_TestAll.py
3002             theFactorX, theFactorY, theFactorZ, Parameters = ParseParameters(theFactorX, theFactorY, theFactorZ)
3003             anObj = self.TrsfOp.ScaleShapeAlongAxesCopy(theObject, thePoint,
3004                                                         theFactorX, theFactorY, theFactorZ)
3005             RaiseIfFailed("MakeScaleAlongAxes", self.TrsfOp)
3006             anObj.SetParameters(Parameters)
3007             return anObj
3008
3009         ## Create an object, symmetrical
3010         #  to the given one relatively the given plane.
3011         #  @param theObject The object to be mirrored.
3012         #  @param thePlane Plane of symmetry.
3013         #  @return New GEOM_Object, containing the mirrored shape.
3014         #
3015         #  @ref tui_mirror "Example"
3016         def MakeMirrorByPlane(self,theObject, thePlane):
3017             # Example: see GEOM_TestAll.py
3018             anObj = self.TrsfOp.MirrorPlaneCopy(theObject, thePlane)
3019             RaiseIfFailed("MirrorPlaneCopy", self.TrsfOp)
3020             return anObj
3021
3022         ## Create an object, symmetrical
3023         #  to the given one relatively the given axis.
3024         #  @param theObject The object to be mirrored.
3025         #  @param theAxis Axis of symmetry.
3026         #  @return New GEOM_Object, containing the mirrored shape.
3027         #
3028         #  @ref tui_mirror "Example"
3029         def MakeMirrorByAxis(self,theObject, theAxis):
3030             # Example: see GEOM_TestAll.py
3031             anObj = self.TrsfOp.MirrorAxisCopy(theObject, theAxis)
3032             RaiseIfFailed("MirrorAxisCopy", self.TrsfOp)
3033             return anObj
3034
3035         ## Create an object, symmetrical
3036         #  to the given one relatively the given point.
3037         #  @param theObject The object to be mirrored.
3038         #  @param thePoint Point of symmetry.
3039         #  @return New GEOM_Object, containing the mirrored shape.
3040         #
3041         #  @ref tui_mirror "Example"
3042         def MakeMirrorByPoint(self,theObject, thePoint):
3043             # Example: see GEOM_TestAll.py
3044             anObj = self.TrsfOp.MirrorPointCopy(theObject, thePoint)
3045             RaiseIfFailed("MirrorPointCopy", self.TrsfOp)
3046             return anObj
3047
3048         ## Modify the Location of the given object by LCS,
3049         #  creating its copy before the setting.
3050         #  @param theObject The object to be displaced.
3051         #  @param theStartLCS Coordinate system to perform displacement from it.
3052         #                     If \a theStartLCS is NULL, displacement
3053         #                     will be performed from global CS.
3054         #                     If \a theObject itself is used as \a theStartLCS,
3055         #                     its location will be changed to \a theEndLCS.
3056         #  @param theEndLCS Coordinate system to perform displacement to it.
3057         #  @return New GEOM_Object, containing the displaced shape.
3058         #
3059         #  @ref tui_modify_location "Example"
3060         def MakePosition(self,theObject, theStartLCS, theEndLCS):
3061             # Example: see GEOM_TestAll.py
3062             anObj = self.TrsfOp.PositionShapeCopy(theObject, theStartLCS, theEndLCS)
3063             RaiseIfFailed("PositionShapeCopy", self.TrsfOp)
3064             return anObj
3065
3066         ## Modify the Location of the given object by Path,
3067         #  @param  theObject The object to be displaced.
3068         #  @param  thePath Wire or Edge along that the object will be translated.
3069         #  @param  theDistance progress of Path (0 = start location, 1 = end of path location).
3070         #  @param  theCopy is to create a copy objects if true.
3071         #  @param  theReverse - 0 for usual direction, 1 to reverse path direction.
3072         #  @return New GEOM_Object, containing the displaced shape.
3073         #
3074         #  @ref tui_modify_location "Example"
3075         def PositionAlongPath(self,theObject, thePath, theDistance, theCopy, theReverse):
3076             # Example: see GEOM_TestAll.py
3077             anObj = self.TrsfOp.PositionAlongPath(theObject, thePath, theDistance, theCopy, theReverse)
3078             RaiseIfFailed("PositionAlongPath", self.TrsfOp)
3079             return anObj
3080
3081         ## Create new object as offset of the given one.
3082         #  @param theObject The base object for the offset.
3083         #  @param theOffset Offset value.
3084         #  @return New GEOM_Object, containing the offset object.
3085         #
3086         #  @ref tui_offset "Example"
3087         def MakeOffset(self,theObject, theOffset):
3088             # Example: see GEOM_TestAll.py
3089             theOffset, Parameters = ParseParameters(theOffset)
3090             anObj = self.TrsfOp.OffsetShapeCopy(theObject, theOffset)
3091             RaiseIfFailed("OffsetShapeCopy", self.TrsfOp)
3092             anObj.SetParameters(Parameters)
3093             return anObj
3094
3095         ## Create new object as projection of the given one on a 2D surface.
3096         #  @param theSource The source object for the projection. It can be a point, edge or wire.
3097         #  @param theTarget The target object. It can be planar or cylindrical face.
3098         #  @return New GEOM_Object, containing the projection.
3099         #
3100         #  @ref tui_projection "Example"
3101         def MakeProjection(self, theSource, theTarget):
3102             # Example: see GEOM_TestAll.py
3103             anObj = self.TrsfOp.ProjectShapeCopy(theSource, theTarget)
3104             RaiseIfFailed("ProjectShapeCopy", self.TrsfOp)
3105             return anObj
3106
3107         # -----------------------------------------------------------------------------
3108         # Patterns
3109         # -----------------------------------------------------------------------------
3110
3111         ## Translate the given object along the given vector a given number times
3112         #  @param theObject The object to be translated.
3113         #  @param theVector Direction of the translation.
3114         #  @param theStep Distance to translate on.
3115         #  @param theNbTimes Quantity of translations to be done.
3116         #  @return New GEOM_Object, containing compound of all
3117         #          the shapes, obtained after each translation.
3118         #
3119         #  @ref tui_multi_translation "Example"
3120         def MakeMultiTranslation1D(self,theObject, theVector, theStep, theNbTimes):
3121             # Example: see GEOM_TestAll.py
3122             theStep, theNbTimes, Parameters = ParseParameters(theStep, theNbTimes)
3123             anObj = self.TrsfOp.MultiTranslate1D(theObject, theVector, theStep, theNbTimes)
3124             RaiseIfFailed("MultiTranslate1D", self.TrsfOp)
3125             anObj.SetParameters(Parameters)
3126             return anObj
3127
3128         ## Conseqently apply two specified translations to theObject specified number of times.
3129         #  @param theObject The object to be translated.
3130         #  @param theVector1 Direction of the first translation.
3131         #  @param theStep1 Step of the first translation.
3132         #  @param theNbTimes1 Quantity of translations to be done along theVector1.
3133         #  @param theVector2 Direction of the second translation.
3134         #  @param theStep2 Step of the second translation.
3135         #  @param theNbTimes2 Quantity of translations to be done along theVector2.
3136         #  @return New GEOM_Object, containing compound of all
3137         #          the shapes, obtained after each translation.
3138         #
3139         #  @ref tui_multi_translation "Example"
3140         def MakeMultiTranslation2D(self,theObject, theVector1, theStep1, theNbTimes1,
3141                                    theVector2, theStep2, theNbTimes2):
3142             # Example: see GEOM_TestAll.py
3143             theStep1,theNbTimes1,theStep2,theNbTimes2, Parameters = ParseParameters(theStep1,theNbTimes1,theStep2,theNbTimes2)
3144             anObj = self.TrsfOp.MultiTranslate2D(theObject, theVector1, theStep1, theNbTimes1,
3145                                                  theVector2, theStep2, theNbTimes2)
3146             RaiseIfFailed("MultiTranslate2D", self.TrsfOp)
3147             anObj.SetParameters(Parameters)
3148             return anObj
3149
3150         ## Rotate the given object around the given axis a given number times.
3151         #  Rotation angle will be 2*PI/theNbTimes.
3152         #  @param theObject The object to be rotated.
3153         #  @param theAxis The rotation axis.
3154         #  @param theNbTimes Quantity of rotations to be done.
3155         #  @return New GEOM_Object, containing compound of all the
3156         #          shapes, obtained after each rotation.
3157         #
3158         #  @ref tui_multi_rotation "Example"
3159         def MultiRotate1D(self,theObject, theAxis, theNbTimes):
3160             # Example: see GEOM_TestAll.py
3161             theAxis, theNbTimes, Parameters = ParseParameters(theAxis, theNbTimes)
3162             anObj = self.TrsfOp.MultiRotate1D(theObject, theAxis, theNbTimes)
3163             RaiseIfFailed("MultiRotate1D", self.TrsfOp)
3164             anObj.SetParameters(Parameters)
3165             return anObj
3166
3167         ## Rotate the given object around the
3168         #  given axis on the given angle a given number
3169         #  times and multi-translate each rotation result.
3170         #  Translation direction passes through center of gravity
3171         #  of rotated shape and its projection on the rotation axis.
3172         #  @param theObject The object to be rotated.
3173         #  @param theAxis Rotation axis.
3174         #  @param theAngle Rotation angle in graduces.
3175         #  @param theNbTimes1 Quantity of rotations to be done.
3176         #  @param theStep Translation distance.
3177         #  @param theNbTimes2 Quantity of translations to be done.
3178         #  @return New GEOM_Object, containing compound of all the
3179         #          shapes, obtained after each transformation.
3180         #
3181         #  @ref tui_multi_rotation "Example"
3182         def MultiRotate2D(self,theObject, theAxis, theAngle, theNbTimes1, theStep, theNbTimes2):
3183             # Example: see GEOM_TestAll.py
3184             theAngle, theNbTimes1, theStep, theNbTimes2, Parameters = ParseParameters(theAngle, theNbTimes1, theStep, theNbTimes2)
3185             anObj = self.TrsfOp.MultiRotate2D(theObject, theAxis, theAngle, theNbTimes1, theStep, theNbTimes2)
3186             RaiseIfFailed("MultiRotate2D", self.TrsfOp)
3187             anObj.SetParameters(Parameters)
3188             return anObj
3189
3190         ## The same, as MultiRotate1D(), but axis is given by direction and point
3191         #  @ref swig_MakeMultiRotation "Example"
3192         def MakeMultiRotation1D(self,aShape,aDir,aPoint,aNbTimes):
3193             # Example: see GEOM_TestOthers.py
3194             aVec = self.MakeLine(aPoint,aDir)
3195             anObj = self.MultiRotate1D(aShape,aVec,aNbTimes)
3196             return anObj
3197
3198         ## The same, as MultiRotate2D(), but axis is given by direction and point
3199         #  @ref swig_MakeMultiRotation "Example"
3200         def MakeMultiRotation2D(self,aShape,aDir,aPoint,anAngle,nbtimes1,aStep,nbtimes2):
3201             # Example: see GEOM_TestOthers.py
3202             aVec = self.MakeLine(aPoint,aDir)
3203             anObj = self.MultiRotate2D(aShape,aVec,anAngle,nbtimes1,aStep,nbtimes2)
3204             return anObj
3205
3206         # end of l3_transform
3207         ## @}
3208
3209         ## @addtogroup l3_local
3210         ## @{
3211
3212         ## Perform a fillet on all edges of the given shape.
3213         #  @param theShape Shape, to perform fillet on.
3214         #  @param theR Fillet radius.
3215         #  @return New GEOM_Object, containing the result shape.
3216         #
3217         #  @ref tui_fillet "Example 1"
3218         #  \n @ref swig_MakeFilletAll "Example 2"
3219         def MakeFilletAll(self,theShape, theR):
3220             # Example: see GEOM_TestOthers.py
3221             theR,Parameters = ParseParameters(theR)
3222             anObj = self.LocalOp.MakeFilletAll(theShape, theR)
3223             RaiseIfFailed("MakeFilletAll", self.LocalOp)
3224             anObj.SetParameters(Parameters)
3225             return anObj
3226
3227         ## Perform a fillet on the specified edges/faces of the given shape
3228         #  @param theShape Shape, to perform fillet on.
3229         #  @param theR Fillet radius.
3230         #  @param theShapeType Type of shapes in <VAR>theListShapes</VAR>.
3231         #  @param theListShapes Global indices of edges/faces to perform fillet on.
3232         #    \note Global index of sub-shape can be obtained, using method geompy.GetSubShapeID().
3233         #  @return New GEOM_Object, containing the result shape.
3234         #
3235         #  @ref tui_fillet "Example"
3236         def MakeFillet(self,theShape, theR, theShapeType, theListShapes):
3237             # Example: see GEOM_TestAll.py
3238             theR,Parameters = ParseParameters(theR)
3239             anObj = None
3240             if theShapeType == ShapeType["EDGE"]:
3241                 anObj = self.LocalOp.MakeFilletEdges(theShape, theR, theListShapes)
3242                 RaiseIfFailed("MakeFilletEdges", self.LocalOp)
3243             else:
3244                 anObj = self.LocalOp.MakeFilletFaces(theShape, theR, theListShapes)
3245                 RaiseIfFailed("MakeFilletFaces", self.LocalOp)
3246             anObj.SetParameters(Parameters)
3247             return anObj
3248
3249         ## The same that MakeFillet but with two Fillet Radius R1 and R2
3250         def MakeFilletR1R2(self, theShape, theR1, theR2, theShapeType, theListShapes):
3251             theR1,theR2,Parameters = ParseParameters(theR1,theR2)
3252             anObj = None
3253             if theShapeType == ShapeType["EDGE"]:
3254                 anObj = self.LocalOp.MakeFilletEdgesR1R2(theShape, theR1, theR2, theListShapes)
3255                 RaiseIfFailed("MakeFilletEdgesR1R2", self.LocalOp)
3256             else:
3257                 anObj = self.LocalOp.MakeFilletFacesR1R2(theShape, theR1, theR2, theListShapes)
3258                 RaiseIfFailed("MakeFilletFacesR1R2", self.LocalOp)
3259             anObj.SetParameters(Parameters)
3260             return anObj
3261
3262         ## Perform a fillet on the specified edges of the given shape
3263         #  @param theShape - Wire Shape to perform fillet on.
3264         #  @param theR - Fillet radius.
3265         #  @param theListOfVertexes Global indices of vertexes to perform fillet on.
3266         #    \note Global index of sub-shape can be obtained, using method geompy.GetSubShapeID().
3267         #    \note The list of vertices could be empty,
3268         #          in this case fillet will done done at all vertices in wire
3269         #  @return New GEOM_Object, containing the result shape.
3270         #
3271         #  @ref tui_fillet2d "Example"
3272         def MakeFillet1D(self,theShape, theR, theListOfVertexes):
3273             # Example: see GEOM_TestAll.py
3274             theR,Parameters = ParseParameters(theR)
3275             anObj = self.LocalOp.MakeFillet1D(theShape, theR, theListOfVertexes)
3276             RaiseIfFailed("MakeFillet1D", self.LocalOp)
3277             anObj.SetParameters(Parameters)
3278             return anObj
3279
3280         ## Perform a fillet on the specified edges/faces of the given shape
3281         #  @param theShape - Face Shape to perform fillet on.
3282         #  @param theR - Fillet radius.
3283         #  @param theListOfVertexes Global indices of vertexes to perform fillet on.
3284         #    \note Global index of sub-shape can be obtained, using method geompy.GetSubShapeID().
3285         #  @return New GEOM_Object, containing the result shape.
3286         #
3287         #  @ref tui_fillet2d "Example"
3288         def MakeFillet2D(self,theShape, theR, theListOfVertexes):
3289             # Example: see GEOM_TestAll.py
3290             theR,Parameters = ParseParameters(theR)
3291             anObj = self.LocalOp.MakeFillet2D(theShape, theR, theListOfVertexes)
3292             RaiseIfFailed("MakeFillet2D", self.LocalOp)
3293             anObj.SetParameters(Parameters)
3294             return anObj
3295
3296         ## Perform a symmetric chamfer on all edges of the given shape.
3297         #  @param theShape Shape, to perform chamfer on.
3298         #  @param theD Chamfer size along each face.
3299         #  @return New GEOM_Object, containing the result shape.
3300         #
3301         #  @ref tui_chamfer "Example 1"
3302         #  \n @ref swig_MakeChamferAll "Example 2"
3303         def MakeChamferAll(self,theShape, theD):
3304             # Example: see GEOM_TestOthers.py
3305             theD,Parameters = ParseParameters(theD)
3306             anObj = self.LocalOp.MakeChamferAll(theShape, theD)
3307             RaiseIfFailed("MakeChamferAll", self.LocalOp)
3308             anObj.SetParameters(Parameters)
3309             return anObj
3310
3311         ## Perform a chamfer on edges, common to the specified faces,
3312         #  with distance D1 on the Face1
3313         #  @param theShape Shape, to perform chamfer on.
3314         #  @param theD1 Chamfer size along \a theFace1.
3315         #  @param theD2 Chamfer size along \a theFace2.
3316         #  @param theFace1,theFace2 Global indices of two faces of \a theShape.
3317         #    \note Global index of sub-shape can be obtained, using method geompy.GetSubShapeID().
3318         #  @return New GEOM_Object, containing the result shape.
3319         #
3320         #  @ref tui_chamfer "Example"
3321         def MakeChamferEdge(self,theShape, theD1, theD2, theFace1, theFace2):
3322             # Example: see GEOM_TestAll.py
3323             theD1,theD2,Parameters = ParseParameters(theD1,theD2)
3324             anObj = self.LocalOp.MakeChamferEdge(theShape, theD1, theD2, theFace1, theFace2)
3325             RaiseIfFailed("MakeChamferEdge", self.LocalOp)
3326             anObj.SetParameters(Parameters)
3327             return anObj
3328
3329         ## The Same that MakeChamferEdge but with params theD is chamfer length and
3330         #  theAngle is Angle of chamfer (angle in radians or a name of variable which defines angle in degrees)
3331         def MakeChamferEdgeAD(self, theShape, theD, theAngle, theFace1, theFace2):
3332             flag = False
3333             if isinstance(theAngle,str):
3334                 flag = True
3335             theD,theAngle,Parameters = ParseParameters(theD,theAngle)
3336             if flag:
3337                 theAngle = theAngle*math.pi/180.0
3338             anObj = self.LocalOp.MakeChamferEdgeAD(theShape, theD, theAngle, theFace1, theFace2)
3339             RaiseIfFailed("MakeChamferEdgeAD", self.LocalOp)
3340             anObj.SetParameters(Parameters)
3341             return anObj
3342
3343         ## Perform a chamfer on all edges of the specified faces,
3344         #  with distance D1 on the first specified face (if several for one edge)
3345         #  @param theShape Shape, to perform chamfer on.
3346         #  @param theD1 Chamfer size along face from \a theFaces. If both faces,
3347         #               connected to the edge, are in \a theFaces, \a theD1
3348         #               will be get along face, which is nearer to \a theFaces beginning.
3349         #  @param theD2 Chamfer size along another of two faces, connected to the edge.
3350         #  @param theFaces Sequence of global indices of faces of \a theShape.
3351         #    \note Global index of sub-shape can be obtained, using method geompy.GetSubShapeID().
3352         #  @return New GEOM_Object, containing the result shape.
3353         #
3354         #  @ref tui_chamfer "Example"
3355         def MakeChamferFaces(self,theShape, theD1, theD2, theFaces):
3356             # Example: see GEOM_TestAll.py
3357             theD1,theD2,Parameters = ParseParameters(theD1,theD2)
3358             anObj = self.LocalOp.MakeChamferFaces(theShape, theD1, theD2, theFaces)
3359             RaiseIfFailed("MakeChamferFaces", self.LocalOp)
3360             anObj.SetParameters(Parameters)
3361             return anObj
3362
3363         ## The Same that MakeChamferFaces but with params theD is chamfer lenght and
3364         #  theAngle is Angle of chamfer (angle in radians or a name of variable which defines angle in degrees)
3365         #
3366         #  @ref swig_FilletChamfer "Example"
3367         def MakeChamferFacesAD(self, theShape, theD, theAngle, theFaces):
3368             flag = False
3369             if isinstance(theAngle,str):
3370                 flag = True
3371             theD,theAngle,Parameters = ParseParameters(theD,theAngle)
3372             if flag:
3373                 theAngle = theAngle*math.pi/180.0
3374             anObj = self.LocalOp.MakeChamferFacesAD(theShape, theD, theAngle, theFaces)
3375             RaiseIfFailed("MakeChamferFacesAD", self.LocalOp)
3376             anObj.SetParameters(Parameters)
3377             return anObj
3378
3379         ## Perform a chamfer on edges,
3380         #  with distance D1 on the first specified face (if several for one edge)
3381         #  @param theShape Shape, to perform chamfer on.
3382         #  @param theD1,theD2 Chamfer size
3383         #  @param theEdges Sequence of edges of \a theShape.
3384         #  @return New GEOM_Object, containing the result shape.
3385         #
3386         #  @ref swig_FilletChamfer "Example"
3387         def MakeChamferEdges(self, theShape, theD1, theD2, theEdges):
3388             theD1,theD2,Parameters = ParseParameters(theD1,theD2)
3389             anObj = self.LocalOp.MakeChamferEdges(theShape, theD1, theD2, theEdges)
3390             RaiseIfFailed("MakeChamferEdges", self.LocalOp)
3391             anObj.SetParameters(Parameters)
3392             return anObj
3393
3394         ## The Same that MakeChamferEdges but with params theD is chamfer lenght and
3395         #  theAngle is Angle of chamfer (angle in radians or a name of variable which defines angle in degrees)
3396         def MakeChamferEdgesAD(self, theShape, theD, theAngle, theEdges):
3397             flag = False
3398             if isinstance(theAngle,str):
3399                 flag = True
3400             theD,theAngle,Parameters = ParseParameters(theD,theAngle)
3401             if flag:
3402                 theAngle = theAngle*math.pi/180.0
3403             anObj = self.LocalOp.MakeChamferEdgesAD(theShape, theD, theAngle, theEdges)
3404             RaiseIfFailed("MakeChamferEdgesAD", self.LocalOp)
3405             anObj.SetParameters(Parameters)
3406             return anObj
3407
3408         ## Shortcut to MakeChamferEdge() and MakeChamferFaces()
3409         #
3410         #  @ref swig_MakeChamfer "Example"
3411         def MakeChamfer(self,aShape,d1,d2,aShapeType,ListShape):
3412             # Example: see GEOM_TestOthers.py
3413             anObj = None
3414             if aShapeType == ShapeType["EDGE"]:
3415                 anObj = self.MakeChamferEdge(aShape,d1,d2,ListShape[0],ListShape[1])
3416             else:
3417                 anObj = self.MakeChamferFaces(aShape,d1,d2,ListShape)
3418             return anObj
3419
3420         # end of l3_local
3421         ## @}
3422
3423         ## @addtogroup l3_basic_op
3424         ## @{
3425
3426         ## Perform an Archimde operation on the given shape with given parameters.
3427         #  The object presenting the resulting face is returned.
3428         #  @param theShape Shape to be put in water.
3429         #  @param theWeight Weight og the shape.
3430         #  @param theWaterDensity Density of the water.
3431         #  @param theMeshDeflection Deflection of the mesh, using to compute the section.
3432         #  @return New GEOM_Object, containing a section of \a theShape
3433         #          by a plane, corresponding to water level.
3434         #
3435         #  @ref tui_archimede "Example"
3436         def Archimede(self,theShape, theWeight, theWaterDensity, theMeshDeflection):
3437             # Example: see GEOM_TestAll.py
3438             theWeight,theWaterDensity,theMeshDeflection,Parameters = ParseParameters(
3439               theWeight,theWaterDensity,theMeshDeflection)
3440             anObj = self.LocalOp.MakeArchimede(theShape, theWeight, theWaterDensity, theMeshDeflection)
3441             RaiseIfFailed("MakeArchimede", self.LocalOp)
3442             anObj.SetParameters(Parameters)
3443             return anObj
3444
3445         # end of l3_basic_op
3446         ## @}
3447
3448         ## @addtogroup l2_measure
3449         ## @{
3450
3451         ## Get point coordinates
3452         #  @return [x, y, z]
3453         #
3454         #  @ref tui_measurement_tools_page "Example"
3455         def PointCoordinates(self,Point):
3456             # Example: see GEOM_TestMeasures.py
3457             aTuple = self.MeasuOp.PointCoordinates(Point)
3458             RaiseIfFailed("PointCoordinates", self.MeasuOp)
3459             return aTuple
3460
3461         ## Get summarized length of all wires,
3462         #  area of surface and volume of the given shape.
3463         #  @param theShape Shape to define properties of.
3464         #  @return [theLength, theSurfArea, theVolume]
3465         #  theLength:   Summarized length of all wires of the given shape.
3466         #  theSurfArea: Area of surface of the given shape.
3467         #  theVolume:   Volume of the given shape.
3468         #
3469         #  @ref tui_measurement_tools_page "Example"
3470         def BasicProperties(self,theShape):
3471             # Example: see GEOM_TestMeasures.py
3472             aTuple = self.MeasuOp.GetBasicProperties(theShape)
3473             RaiseIfFailed("GetBasicProperties", self.MeasuOp)
3474             return aTuple
3475
3476         ## Get parameters of bounding box of the given shape
3477         #  @param theShape Shape to obtain bounding box of.
3478         #  @return [Xmin,Xmax, Ymin,Ymax, Zmin,Zmax]
3479         #  Xmin,Xmax: Limits of shape along OX axis.
3480         #  Ymin,Ymax: Limits of shape along OY axis.
3481         #  Zmin,Zmax: Limits of shape along OZ axis.
3482         #
3483         #  @ref tui_measurement_tools_page "Example"
3484         def BoundingBox(self,theShape):
3485             # Example: see GEOM_TestMeasures.py
3486             aTuple = self.MeasuOp.GetBoundingBox(theShape)
3487             RaiseIfFailed("GetBoundingBox", self.MeasuOp)
3488             return aTuple
3489
3490         ## Get inertia matrix and moments of inertia of theShape.
3491         #  @param theShape Shape to calculate inertia of.
3492         #  @return [I11,I12,I13, I21,I22,I23, I31,I32,I33, Ix,Iy,Iz]
3493         #  I(1-3)(1-3): Components of the inertia matrix of the given shape.
3494         #  Ix,Iy,Iz:    Moments of inertia of the given shape.
3495         #
3496         #  @ref tui_measurement_tools_page "Example"
3497         def Inertia(self,theShape):
3498             # Example: see GEOM_TestMeasures.py
3499             aTuple = self.MeasuOp.GetInertia(theShape)
3500             RaiseIfFailed("GetInertia", self.MeasuOp)
3501             return aTuple
3502
3503         ## Get if coords are included in the shape (ST_IN or ST_ON)
3504         #  @param theShape Shape
3505         #  @param coords list of points coordinates [x1, y1, z1, x2, y2, z2, ...]
3506         #  @param tolerance to be used (default is 1.0e-7)
3507         #  @return list_of_boolean = [res1, res2, ...]
3508         def AreCoordsInside(self, theShape, coords, tolerance=1.e-7):
3509             return self.MeasuOp.AreCoordsInside(theShape, coords, tolerance)
3510
3511         ## Get minimal distance between the given shapes.
3512         #  @param theShape1,theShape2 Shapes to find minimal distance between.
3513         #  @return Value of the minimal distance between the given shapes.
3514         #
3515         #  @ref tui_measurement_tools_page "Example"
3516         def MinDistance(self, theShape1, theShape2):
3517             # Example: see GEOM_TestMeasures.py
3518             aTuple = self.MeasuOp.GetMinDistance(theShape1, theShape2)
3519             RaiseIfFailed("GetMinDistance", self.MeasuOp)
3520             return aTuple[0]
3521
3522         ## Get minimal distance between the given shapes.
3523         #  @param theShape1,theShape2 Shapes to find minimal distance between.
3524         #  @return Value of the minimal distance between the given shapes.
3525         #
3526         #  @ref swig_all_measure "Example"
3527         def MinDistanceComponents(self, theShape1, theShape2):
3528             # Example: see GEOM_TestMeasures.py
3529             aTuple = self.MeasuOp.GetMinDistance(theShape1, theShape2)
3530             RaiseIfFailed("GetMinDistance", self.MeasuOp)
3531             aRes = [aTuple[0], aTuple[4] - aTuple[1], aTuple[5] - aTuple[2], aTuple[6] - aTuple[3]]
3532             return aRes
3533
3534         ## Get angle between the given shapes in degrees.
3535         #  @param theShape1,theShape2 Lines or linear edges to find angle between.
3536         #  @return Value of the angle between the given shapes in degrees.
3537         #
3538         #  @ref tui_measurement_tools_page "Example"
3539         def GetAngle(self, theShape1, theShape2):
3540             # Example: see GEOM_TestMeasures.py
3541             anAngle = self.MeasuOp.GetAngle(theShape1, theShape2)
3542             RaiseIfFailed("GetAngle", self.MeasuOp)
3543             return anAngle
3544         ## Get angle between the given shapes in radians.
3545         #  @param theShape1,theShape2 Lines or linear edges to find angle between.
3546         #  @return Value of the angle between the given shapes in radians.
3547         #
3548         #  @ref tui_measurement_tools_page "Example"
3549         def GetAngleRadians(self, theShape1, theShape2):
3550             # Example: see GEOM_TestMeasures.py
3551             anAngle = self.MeasuOp.GetAngle(theShape1, theShape2)*math.pi/180.
3552             RaiseIfFailed("GetAngle", self.MeasuOp)
3553             return anAngle
3554
3555         ## @name Curve Curvature Measurement
3556         #  Methods for receiving radius of curvature of curves
3557         #  in the given point
3558         ## @{
3559
3560         ## Measure curvature of a curve at a point, set by parameter.
3561         #  @ref swig_todo "Example"
3562         def CurveCurvatureByParam(self, theCurve, theParam):
3563             # Example: see GEOM_TestMeasures.py
3564             aCurv = self.MeasuOp.CurveCurvatureByParam(theCurve,theParam)
3565             RaiseIfFailed("CurveCurvatureByParam", self.MeasuOp)
3566             return aCurv
3567
3568         ## @details
3569         #  @ref swig_todo "Example"
3570         def CurveCurvatureByPoint(self, theCurve, thePoint):
3571             aCurv = self.MeasuOp.CurveCurvatureByPoint(theCurve,thePoint)
3572             RaiseIfFailed("CurveCurvatureByPoint", self.MeasuOp)
3573             return aCurv
3574         ## @}
3575
3576         ## @name Surface Curvature Measurement
3577         #  Methods for receiving max and min radius of curvature of surfaces
3578         #  in the given point
3579         ## @{
3580
3581         ## @details
3582         ## @ref swig_todo "Example"
3583         def MaxSurfaceCurvatureByParam(self, theSurf, theUParam, theVParam):
3584             # Example: see GEOM_TestMeasures.py
3585             aSurf = self.MeasuOp.MaxSurfaceCurvatureByParam(theSurf,theUParam,theVParam)
3586             RaiseIfFailed("MaxSurfaceCurvatureByParam", self.MeasuOp)
3587             return aSurf
3588
3589         ## @details
3590         ## @ref swig_todo "Example"
3591         def MaxSurfaceCurvatureByPoint(self, theSurf, thePoint):
3592             aSurf = self.MeasuOp.MaxSurfaceCurvatureByPoint(theSurf,thePoint)
3593             RaiseIfFailed("MaxSurfaceCurvatureByPoint", self.MeasuOp)
3594             return aSurf
3595
3596         ## @details
3597         ## @ref swig_todo "Example"
3598         def MinSurfaceCurvatureByParam(self, theSurf, theUParam, theVParam):
3599             aSurf = self.MeasuOp.MinSurfaceCurvatureByParam(theSurf,theUParam,theVParam)
3600             RaiseIfFailed("MinSurfaceCurvatureByParam", self.MeasuOp)
3601             return aSurf
3602
3603         ## @details
3604         ## @ref swig_todo "Example"
3605         def MinSurfaceCurvatureByPoint(self, theSurf, thePoint):
3606             aSurf = self.MeasuOp.MinSurfaceCurvatureByPoint(theSurf,thePoint)
3607             RaiseIfFailed("MinSurfaceCurvatureByPoint", self.MeasuOp)
3608             return aSurf
3609         ## @}
3610
3611         ## Get min and max tolerances of sub-shapes of theShape
3612         #  @param theShape Shape, to get tolerances of.
3613         #  @return [FaceMin,FaceMax, EdgeMin,EdgeMax, VertMin,VertMax]
3614         #  FaceMin,FaceMax: Min and max tolerances of the faces.
3615         #  EdgeMin,EdgeMax: Min and max tolerances of the edges.
3616         #  VertMin,VertMax: Min and max tolerances of the vertices.
3617         #
3618         #  @ref tui_measurement_tools_page "Example"
3619         def Tolerance(self,theShape):
3620             # Example: see GEOM_TestMeasures.py
3621             aTuple = self.MeasuOp.GetTolerance(theShape)
3622             RaiseIfFailed("GetTolerance", self.MeasuOp)
3623             return aTuple
3624
3625         ## Obtain description of the given shape (number of sub-shapes of each type)
3626         #  @param theShape Shape to be described.
3627         #  @return Description of the given shape.
3628         #
3629         #  @ref tui_measurement_tools_page "Example"
3630         def WhatIs(self,theShape):
3631             # Example: see GEOM_TestMeasures.py
3632             aDescr = self.MeasuOp.WhatIs(theShape)
3633             RaiseIfFailed("WhatIs", self.MeasuOp)
3634             return aDescr
3635
3636         ## Obtain quantity of shapes of the given type in \a theShape.
3637         #  If \a theShape is of type \a theType, it is also counted.
3638         #  @param theShape Shape to be described.
3639         #  @return Quantity of shapes of type \a theType in \a theShape.
3640         #
3641         #  @ref tui_measurement_tools_page "Example"
3642         def NbShapes (self, theShape, theType):
3643             # Example: see GEOM_TestMeasures.py
3644             listSh = self.SubShapeAllIDs(theShape, theType)
3645             Nb = len(listSh)
3646             t       = EnumToLong(theShape.GetShapeType())
3647             theType = EnumToLong(theType)
3648             if t == theType:
3649                 Nb = Nb + 1
3650                 pass
3651             return Nb
3652
3653         ## Obtain quantity of shapes of each type in \a theShape.
3654         #  The \a theShape is also counted.
3655         #  @param theShape Shape to be described.
3656         #  @return Dictionary of shape types with bound quantities of shapes.
3657         #
3658         #  @ref tui_measurement_tools_page "Example"
3659         def ShapeInfo (self, theShape):
3660             # Example: see GEOM_TestMeasures.py
3661             aDict = {}
3662             for typeSh in ShapeType:
3663                 if typeSh in ( "AUTO", "SHAPE" ): continue
3664                 listSh = self.SubShapeAllIDs(theShape, ShapeType[typeSh])
3665                 Nb = len(listSh)
3666                 if EnumToLong(theShape.GetShapeType()) == ShapeType[typeSh]:
3667                     Nb = Nb + 1
3668                     pass
3669                 aDict[typeSh] = Nb
3670                 pass
3671             return aDict
3672
3673         ## Get a point, situated at the centre of mass of theShape.
3674         #  @param theShape Shape to define centre of mass of.
3675         #  @return New GEOM_Object, containing the created point.
3676         #
3677         #  @ref tui_measurement_tools_page "Example"
3678         def MakeCDG(self,theShape):
3679             # Example: see GEOM_TestMeasures.py
3680             anObj = self.MeasuOp.GetCentreOfMass(theShape)
3681             RaiseIfFailed("GetCentreOfMass", self.MeasuOp)
3682             return anObj
3683
3684         ## Get a vertex subshape by index depended with orientation.
3685         #  @param theShape Shape to find subshape.
3686         #  @param theIndex Index to find vertex by this index (starting from zero)
3687         #  @return New GEOM_Object, containing the created vertex.
3688         #
3689         #  @ref tui_measurement_tools_page "Example"
3690         def GetVertexByIndex(self,theShape, theIndex):
3691             # Example: see GEOM_TestMeasures.py
3692             anObj = self.MeasuOp.GetVertexByIndex(theShape, theIndex)
3693             RaiseIfFailed("GetVertexByIndex", self.MeasuOp)
3694             return anObj
3695
3696         ## Get the first vertex of wire/edge depended orientation.
3697         #  @param theShape Shape to find first vertex.
3698         #  @return New GEOM_Object, containing the created vertex.
3699         #
3700         #  @ref tui_measurement_tools_page "Example"
3701         def GetFirstVertex(self,theShape):
3702             # Example: see GEOM_TestMeasures.py
3703             anObj = self.GetVertexByIndex(theShape, 0)
3704             RaiseIfFailed("GetFirstVertex", self.MeasuOp)
3705             return anObj
3706
3707         ## Get the last vertex of wire/edge depended orientation.
3708         #  @param theShape Shape to find last vertex.
3709         #  @return New GEOM_Object, containing the created vertex.
3710         #
3711         #  @ref tui_measurement_tools_page "Example"
3712         def GetLastVertex(self,theShape):
3713             # Example: see GEOM_TestMeasures.py
3714             nb_vert =  self.ShapesOp.NumberOfSubShapes(theShape, ShapeType["VERTEX"])
3715             anObj = self.GetVertexByIndex(theShape, (nb_vert-1))
3716             RaiseIfFailed("GetLastVertex", self.MeasuOp)
3717             return anObj
3718
3719         ## Get a normale to the given face. If the point is not given,
3720         #  the normale is calculated at the center of mass.
3721         #  @param theFace Face to define normale of.
3722         #  @param theOptionalPoint Point to compute the normale at.
3723         #  @return New GEOM_Object, containing the created vector.
3724         #
3725         #  @ref swig_todo "Example"
3726         def GetNormal(self, theFace, theOptionalPoint = None):
3727             # Example: see GEOM_TestMeasures.py
3728             anObj = self.MeasuOp.GetNormal(theFace, theOptionalPoint)
3729             RaiseIfFailed("GetNormal", self.MeasuOp)
3730             return anObj
3731
3732         ## Check a topology of the given shape.
3733         #  @param theShape Shape to check validity of.
3734         #  @param theIsCheckGeom If FALSE, only the shape's topology will be checked,
3735         #                        if TRUE, the shape's geometry will be checked also.
3736         #  @return TRUE, if the shape "seems to be valid".
3737         #  If theShape is invalid, prints a description of problem.
3738         #
3739         #  @ref tui_measurement_tools_page "Example"
3740         def CheckShape(self,theShape, theIsCheckGeom = 0):
3741             # Example: see GEOM_TestMeasures.py
3742             if theIsCheckGeom:
3743                 (IsValid, Status) = self.MeasuOp.CheckShapeWithGeometry(theShape)
3744                 RaiseIfFailed("CheckShapeWithGeometry", self.MeasuOp)
3745             else:
3746                 (IsValid, Status) = self.MeasuOp.CheckShape(theShape)
3747                 RaiseIfFailed("CheckShape", self.MeasuOp)
3748             if IsValid == 0:
3749                 print Status
3750             return IsValid
3751
3752         ## Get position (LCS) of theShape.
3753         #
3754         #  Origin of the LCS is situated at the shape's center of mass.
3755         #  Axes of the LCS are obtained from shape's location or,
3756         #  if the shape is a planar face, from position of its plane.
3757         #
3758         #  @param theShape Shape to calculate position of.
3759         #  @return [Ox,Oy,Oz, Zx,Zy,Zz, Xx,Xy,Xz].
3760         #          Ox,Oy,Oz: Coordinates of shape's LCS origin.
3761         #          Zx,Zy,Zz: Coordinates of shape's LCS normal(main) direction.
3762         #          Xx,Xy,Xz: Coordinates of shape's LCS X direction.
3763         #
3764         #  @ref swig_todo "Example"
3765         def GetPosition(self,theShape):
3766             # Example: see GEOM_TestMeasures.py
3767             aTuple = self.MeasuOp.GetPosition(theShape)
3768             RaiseIfFailed("GetPosition", self.MeasuOp)
3769             return aTuple
3770
3771         ## Get kind of theShape.
3772         #
3773         #  @param theShape Shape to get a kind of.
3774         #  @return Returns a kind of shape in terms of <VAR>GEOM_IKindOfShape.shape_kind</VAR> enumeration
3775         #          and a list of parameters, describing the shape.
3776         #  @note  Concrete meaning of each value, returned via \a theIntegers
3777         #         or \a theDoubles list depends on the kind of the shape.
3778         #         The full list of possible outputs is:
3779         #
3780         #  - geompy.kind.COMPOUND              nb_solids  nb_faces  nb_edges  nb_vertices
3781         #  - geompy.kind.COMPSOLID             nb_solids  nb_faces  nb_edges  nb_vertices
3782         #
3783         #  - geompy.kind.SHELL       geompy.info.CLOSED   nb_faces  nb_edges  nb_vertices
3784         #  - geompy.kind.SHELL       geompy.info.UNCLOSED nb_faces  nb_edges  nb_vertices
3785         #
3786         #  - geompy.kind.WIRE        geompy.info.CLOSED             nb_edges  nb_vertices
3787         #  - geompy.kind.WIRE        geompy.info.UNCLOSED           nb_edges  nb_vertices
3788         #
3789         #  - geompy.kind.SPHERE       xc yc zc            R
3790         #  - geompy.kind.CYLINDER     xb yb zb  dx dy dz  R         H
3791         #  - geompy.kind.BOX          xc yc zc                      ax ay az
3792         #  - geompy.kind.ROTATED_BOX  xc yc zc  zx zy zz  xx xy xz  ax ay az
3793         #  - geompy.kind.TORUS        xc yc zc  dx dy dz  R_1  R_2
3794         #  - geompy.kind.CONE         xb yb zb  dx dy dz  R_1  R_2  H
3795         #  - geompy.kind.POLYHEDRON                       nb_faces  nb_edges  nb_vertices
3796         #  - geompy.kind.SOLID                            nb_faces  nb_edges  nb_vertices
3797         #
3798         #  - geompy.kind.SPHERE2D     xc yc zc            R
3799         #  - geompy.kind.CYLINDER2D   xb yb zb  dx dy dz  R         H
3800         #  - geompy.kind.TORUS2D      xc yc zc  dx dy dz  R_1  R_2
3801         #  - geompy.kind.CONE2D       xc yc zc  dx dy dz  R_1  R_2  H
3802         #  - geompy.kind.DISK_CIRCLE  xc yc zc  dx dy dz  R
3803         #  - geompy.kind.DISK_ELLIPSE xc yc zc  dx dy dz  R_1  R_2
3804         #  - geompy.kind.POLYGON      xo yo zo  dx dy dz            nb_edges  nb_vertices
3805         #  - geompy.kind.PLANE        xo yo zo  dx dy dz
3806         #  - geompy.kind.PLANAR       xo yo zo  dx dy dz            nb_edges  nb_vertices
3807         #  - geompy.kind.FACE                                       nb_edges  nb_vertices
3808         #
3809         #  - geompy.kind.CIRCLE       xc yc zc  dx dy dz  R
3810         #  - geompy.kind.ARC_CIRCLE   xc yc zc  dx dy dz  R         x1 y1 z1  x2 y2 z2
3811         #  - geompy.kind.ELLIPSE      xc yc zc  dx dy dz  R_1  R_2
3812         #  - geompy.kind.ARC_ELLIPSE  xc yc zc  dx dy dz  R_1  R_2  x1 y1 z1  x2 y2 z2
3813         #  - geompy.kind.LINE         xo yo zo  dx dy dz
3814         #  - geompy.kind.SEGMENT      x1 y1 z1  x2 y2 z2
3815         #  - geompy.kind.EDGE                                                 nb_vertices
3816         #
3817         #  - geompy.kind.VERTEX       x  y  z
3818         #
3819         #  @ref swig_todo "Example"
3820         def KindOfShape(self,theShape):
3821             # Example: see GEOM_TestMeasures.py
3822             aRoughTuple = self.MeasuOp.KindOfShape(theShape)
3823             RaiseIfFailed("KindOfShape", self.MeasuOp)
3824
3825             aKind  = aRoughTuple[0]
3826             anInts = aRoughTuple[1]
3827             aDbls  = aRoughTuple[2]
3828
3829             # Now there is no exception from this rule:
3830             aKindTuple = [aKind] + aDbls + anInts
3831
3832             # If they are we will regroup parameters for such kind of shape.
3833             # For example:
3834             #if aKind == kind.SOME_KIND:
3835             #    #  SOME_KIND     int int double int double double
3836             #    aKindTuple = [aKind, anInts[0], anInts[1], aDbls[0], anInts[2], aDbls[1], aDbls[2]]
3837
3838             return aKindTuple
3839
3840         # end of l2_measure
3841         ## @}
3842
3843         ## @addtogroup l2_import_export
3844         ## @{
3845
3846         ## Import a shape from the BREP or IGES or STEP file
3847         #  (depends on given format) with given name.
3848         #  @param theFileName The file, containing the shape.
3849         #  @param theFormatName Specify format for the file reading.
3850         #         Available formats can be obtained with InsertOp.ImportTranslators() method.
3851         #         If format 'IGES_SCALE' is used instead 'IGES' length unit will be
3852         #         set to 'meter' and result model will be scaled.
3853         #  @return New GEOM_Object, containing the imported shape.
3854         #
3855         #  @ref swig_Import_Export "Example"
3856         def ImportFile(self,theFileName, theFormatName):
3857             # Example: see GEOM_TestOthers.py
3858             anObj = self.InsertOp.ImportFile(theFileName, theFormatName)
3859             RaiseIfFailed("Import", self.InsertOp)
3860             return anObj
3861
3862         ## Deprecated analog of ImportFile
3863         def Import(self,theFileName, theFormatName):
3864             print "WARNING: Function Import is deprecated, use ImportFile instead"
3865             anObj = self.InsertOp.ImportFile(theFileName, theFormatName)
3866             RaiseIfFailed("Import", self.InsertOp)
3867             return anObj
3868
3869         ## Shortcut to ImportFile() for BREP format
3870         #
3871         #  @ref swig_Import_Export "Example"
3872         def ImportBREP(self,theFileName):
3873             # Example: see GEOM_TestOthers.py
3874             return self.ImportFile(theFileName, "BREP")
3875
3876         ## Shortcut to ImportFile() for IGES format
3877         #
3878         #  @ref swig_Import_Export "Example"
3879         def ImportIGES(self,theFileName):
3880             # Example: see GEOM_TestOthers.py
3881             return self.ImportFile(theFileName, "IGES")
3882
3883         ## Return length unit from given IGES file
3884         #
3885         #  @ref swig_Import_Export "Example"
3886         def GetIGESUnit(self,theFileName):
3887             # Example: see GEOM_TestOthers.py
3888             anObj = self.InsertOp.ImportFile(theFileName, "IGES_UNIT")
3889             #RaiseIfFailed("Import", self.InsertOp)
3890             # recieve name using returned vertex
3891             UnitName = "M"
3892             if anObj.GetShapeType() == GEOM.VERTEX:
3893                 vertices = [anObj]
3894             else:
3895                 vertices = self.SubShapeAll(anObj,ShapeType["VERTEX"])
3896             if len(vertices)>0:
3897                 p = self.PointCoordinates(vertices[0])
3898                 if abs(p[0]-0.01) < 1.e-6:
3899                     UnitName = "CM"
3900                 elif abs(p[0]-0.001) < 1.e-6:
3901                     UnitName = "MM"
3902             return UnitName
3903
3904         ## Shortcut to ImportFile() for STEP format
3905         #
3906         #  @ref swig_Import_Export "Example"
3907         def ImportSTEP(self,theFileName):
3908             # Example: see GEOM_TestOthers.py
3909             return self.ImportFile(theFileName, "STEP")
3910
3911         ## Export the given shape into a file with given name.
3912         #  @param theObject Shape to be stored in the file.
3913         #  @param theFileName Name of the file to store the given shape in.
3914         #  @param theFormatName Specify format for the shape storage.
3915         #         Available formats can be obtained with InsertOp.ImportTranslators() method.
3916         #
3917         #  @ref swig_Import_Export "Example"
3918         def Export(self,theObject, theFileName, theFormatName):
3919             # Example: see GEOM_TestOthers.py
3920             self.InsertOp.Export(theObject, theFileName, theFormatName)
3921             if self.InsertOp.IsDone() == 0:
3922                 raise RuntimeError,  "Export : " + self.InsertOp.GetErrorCode()
3923                 pass
3924             pass
3925
3926         ## Shortcut to Export() for BREP format
3927         #
3928         #  @ref swig_Import_Export "Example"
3929         def ExportBREP(self,theObject, theFileName):
3930             # Example: see GEOM_TestOthers.py
3931             return self.Export(theObject, theFileName, "BREP")
3932
3933         ## Shortcut to Export() for IGES format
3934         #
3935         #  @ref swig_Import_Export "Example"
3936         def ExportIGES(self,theObject, theFileName):
3937             # Example: see GEOM_TestOthers.py
3938             return self.Export(theObject, theFileName, "IGES")
3939
3940         ## Shortcut to Export() for STEP format
3941         #
3942         #  @ref swig_Import_Export "Example"
3943         def ExportSTEP(self,theObject, theFileName):
3944             # Example: see GEOM_TestOthers.py
3945             return self.Export(theObject, theFileName, "STEP")
3946
3947         # end of l2_import_export
3948         ## @}
3949
3950         ## @addtogroup l3_blocks
3951         ## @{
3952
3953         ## Create a quadrangle face from four edges. Order of Edges is not
3954         #  important. It is  not necessary that edges share the same vertex.
3955         #  @param E1,E2,E3,E4 Edges for the face bound.
3956         #  @return New GEOM_Object, containing the created face.
3957         #
3958         #  @ref tui_building_by_blocks_page "Example"
3959         def MakeQuad(self,E1, E2, E3, E4):
3960             # Example: see GEOM_Spanner.py
3961             anObj = self.BlocksOp.MakeQuad(E1, E2, E3, E4)
3962             RaiseIfFailed("MakeQuad", self.BlocksOp)
3963             return anObj
3964
3965         ## Create a quadrangle face on two edges.
3966         #  The missing edges will be built by creating the shortest ones.
3967         #  @param E1,E2 Two opposite edges for the face.
3968         #  @return New GEOM_Object, containing the created face.
3969         #
3970         #  @ref tui_building_by_blocks_page "Example"
3971         def MakeQuad2Edges(self,E1, E2):
3972             # Example: see GEOM_Spanner.py
3973             anObj = self.BlocksOp.MakeQuad2Edges(E1, E2)
3974             RaiseIfFailed("MakeQuad2Edges", self.BlocksOp)
3975             return anObj
3976
3977         ## Create a quadrangle face with specified corners.
3978         #  The missing edges will be built by creating the shortest ones.
3979         #  @param V1,V2,V3,V4 Corner vertices for the face.
3980         #  @return New GEOM_Object, containing the created face.
3981         #
3982         #  @ref tui_building_by_blocks_page "Example 1"
3983         #  \n @ref swig_MakeQuad4Vertices "Example 2"
3984         def MakeQuad4Vertices(self,V1, V2, V3, V4):
3985             # Example: see GEOM_Spanner.py
3986             anObj = self.BlocksOp.MakeQuad4Vertices(V1, V2, V3, V4)
3987             RaiseIfFailed("MakeQuad4Vertices", self.BlocksOp)
3988             return anObj
3989
3990         ## Create a hexahedral solid, bounded by the six given faces. Order of
3991         #  faces is not important. It is  not necessary that Faces share the same edge.
3992         #  @param F1,F2,F3,F4,F5,F6 Faces for the hexahedral solid.
3993         #  @return New GEOM_Object, containing the created solid.
3994         #
3995         #  @ref tui_building_by_blocks_page "Example 1"
3996         #  \n @ref swig_MakeHexa "Example 2"
3997         def MakeHexa(self,F1, F2, F3, F4, F5, F6):
3998             # Example: see GEOM_Spanner.py
3999             anObj = self.BlocksOp.MakeHexa(F1, F2, F3, F4, F5, F6)
4000             RaiseIfFailed("MakeHexa", self.BlocksOp)
4001             return anObj
4002
4003         ## Create a hexahedral solid between two given faces.
4004         #  The missing faces will be built by creating the smallest ones.
4005         #  @param F1,F2 Two opposite faces for the hexahedral solid.
4006         #  @return New GEOM_Object, containing the created solid.
4007         #
4008         #  @ref tui_building_by_blocks_page "Example 1"
4009         #  \n @ref swig_MakeHexa2Faces "Example 2"
4010         def MakeHexa2Faces(self,F1, F2):
4011             # Example: see GEOM_Spanner.py
4012             anObj = self.BlocksOp.MakeHexa2Faces(F1, F2)
4013             RaiseIfFailed("MakeHexa2Faces", self.BlocksOp)
4014             return anObj
4015
4016         # end of l3_blocks
4017         ## @}
4018
4019         ## @addtogroup l3_blocks_op
4020         ## @{
4021
4022         ## Get a vertex, found in the given shape by its coordinates.
4023         #  @param theShape Block or a compound of blocks.
4024         #  @param theX,theY,theZ Coordinates of the sought vertex.
4025         #  @param theEpsilon Maximum allowed distance between the resulting
4026         #                    vertex and point with the given coordinates.
4027         #  @return New GEOM_Object, containing the found vertex.
4028         #
4029         #  @ref swig_GetPoint "Example"
4030         def GetPoint(self, theShape, theX, theY, theZ, theEpsilon):
4031             # Example: see GEOM_TestOthers.py
4032             anObj = self.BlocksOp.GetPoint(theShape, theX, theY, theZ, theEpsilon)
4033             RaiseIfFailed("GetPoint", self.BlocksOp)
4034             return anObj
4035
4036         ## Find a vertex of the given shape, which has minimal distance to the given point.
4037         #  @param theShape Any shape.
4038         #  @param thePoint Point, close to the desired vertex.
4039         #  @return New GEOM_Object, containing the found vertex.
4040         #
4041         #  @ref swig_GetVertexNearPoint "Example"
4042         def GetVertexNearPoint(self, theShape, thePoint):
4043             # Example: see GEOM_TestOthers.py
4044             anObj = self.BlocksOp.GetVertexNearPoint(theShape, thePoint)
4045             RaiseIfFailed("GetVertexNearPoint", self.BlocksOp)
4046             return anObj
4047
4048         ## Get an edge, found in the given shape by two given vertices.
4049         #  @param theShape Block or a compound of blocks.
4050         #  @param thePoint1,thePoint2 Points, close to the ends of the desired edge.
4051         #  @return New GEOM_Object, containing the found edge.
4052         #
4053         #  @ref swig_GetEdge "Example"
4054         def GetEdge(self, theShape, thePoint1, thePoint2):
4055             # Example: see GEOM_Spanner.py
4056             anObj = self.BlocksOp.GetEdge(theShape, thePoint1, thePoint2)
4057             RaiseIfFailed("GetEdge", self.BlocksOp)
4058             return anObj
4059
4060         ## Find an edge of the given shape, which has minimal distance to the given point.
4061         #  @param theShape Block or a compound of blocks.
4062         #  @param thePoint Point, close to the desired edge.
4063         #  @return New GEOM_Object, containing the found edge.
4064         #
4065         #  @ref swig_GetEdgeNearPoint "Example"
4066         def GetEdgeNearPoint(self, theShape, thePoint):
4067             # Example: see GEOM_TestOthers.py
4068             anObj = self.BlocksOp.GetEdgeNearPoint(theShape, thePoint)
4069             RaiseIfFailed("GetEdgeNearPoint", self.BlocksOp)
4070             return anObj
4071
4072         ## Returns a face, found in the given shape by four given corner vertices.
4073         #  @param theShape Block or a compound of blocks.
4074         #  @param thePoint1,thePoint2,thePoint3,thePoint4 Points, close to the corners of the desired face.
4075         #  @return New GEOM_Object, containing the found face.
4076         #
4077         #  @ref swig_todo "Example"
4078         def GetFaceByPoints(self,theShape, thePoint1, thePoint2, thePoint3, thePoint4):
4079             # Example: see GEOM_Spanner.py
4080             anObj = self.BlocksOp.GetFaceByPoints(theShape, thePoint1, thePoint2, thePoint3, thePoint4)
4081             RaiseIfFailed("GetFaceByPoints", self.BlocksOp)
4082             return anObj
4083
4084         ## Get a face of block, found in the given shape by two given edges.
4085         #  @param theShape Block or a compound of blocks.
4086         #  @param theEdge1,theEdge2 Edges, close to the edges of the desired face.
4087         #  @return New GEOM_Object, containing the found face.
4088         #
4089         #  @ref swig_todo "Example"
4090         def GetFaceByEdges(self,theShape, theEdge1, theEdge2):
4091             # Example: see GEOM_Spanner.py
4092             anObj = self.BlocksOp.GetFaceByEdges(theShape, theEdge1, theEdge2)
4093             RaiseIfFailed("GetFaceByEdges", self.BlocksOp)
4094             return anObj
4095
4096         ## Find a face, opposite to the given one in the given block.
4097         #  @param theBlock Must be a hexahedral solid.
4098         #  @param theFace Face of \a theBlock, opposite to the desired face.
4099         #  @return New GEOM_Object, containing the found face.
4100         #
4101         #  @ref swig_GetOppositeFace "Example"
4102         def GetOppositeFace(self,theBlock, theFace):
4103             # Example: see GEOM_Spanner.py
4104             anObj = self.BlocksOp.GetOppositeFace(theBlock, theFace)
4105             RaiseIfFailed("GetOppositeFace", self.BlocksOp)
4106             return anObj
4107
4108         ## Find a face of the given shape, which has minimal distance to the given point.
4109         #  @param theShape Block or a compound of blocks.
4110         #  @param thePoint Point, close to the desired face.
4111         #  @return New GEOM_Object, containing the found face.
4112         #
4113         #  @ref swig_GetFaceNearPoint "Example"
4114         def GetFaceNearPoint(self, theShape, thePoint):
4115             # Example: see GEOM_Spanner.py
4116             anObj = self.BlocksOp.GetFaceNearPoint(theShape, thePoint)
4117             RaiseIfFailed("GetFaceNearPoint", self.BlocksOp)
4118             return anObj
4119
4120         ## Find a face of block, whose outside normale has minimal angle with the given vector.
4121         #  @param theBlock Block or a compound of blocks.
4122         #  @param theVector Vector, close to the normale of the desired face.
4123         #  @return New GEOM_Object, containing the found face.
4124         #
4125         #  @ref swig_todo "Example"
4126         def GetFaceByNormale(self, theBlock, theVector):
4127             # Example: see GEOM_Spanner.py
4128             anObj = self.BlocksOp.GetFaceByNormale(theBlock, theVector)
4129             RaiseIfFailed("GetFaceByNormale", self.BlocksOp)
4130             return anObj
4131
4132         ## Find all subshapes of type \a theShapeType of the given shape,
4133         #  which have minimal distance to the given point.
4134         #  @param theShape Any shape.
4135         #  @param thePoint Point, close to the desired shape.
4136         #  @param theShapeType Defines what kind of subshapes is searched.
4137         #  @param theTolerance The tolerance for distances comparison. All shapes
4138         #                      with distances to the given point in interval
4139         #                      [minimal_distance, minimal_distance + theTolerance] will be gathered.
4140         #  @return New GEOM_Object, containing a group of all found shapes.
4141         #
4142         #  @ref swig_GetShapesNearPoint "Example"
4143         def GetShapesNearPoint(self, theShape, thePoint, theShapeType, theTolerance = 1e-07):
4144             # Example: see GEOM_TestOthers.py
4145             anObj = self.BlocksOp.GetShapesNearPoint(theShape, thePoint, theShapeType, theTolerance)
4146             RaiseIfFailed("GetShapesNearPoint", self.BlocksOp)
4147             return anObj
4148
4149         # end of l3_blocks_op
4150         ## @}
4151
4152         ## @addtogroup l4_blocks_measure
4153         ## @{
4154
4155         ## Check, if the compound of blocks is given.
4156         #  To be considered as a compound of blocks, the
4157         #  given shape must satisfy the following conditions:
4158         #  - Each element of the compound should be a Block (6 faces and 12 edges).
4159         #  - A connection between two Blocks should be an entire quadrangle face or an entire edge.
4160         #  - The compound should be connexe.
4161         #  - The glue between two quadrangle faces should be applied.
4162         #  @param theCompound The compound to check.
4163         #  @return TRUE, if the given shape is a compound of blocks.
4164         #  If theCompound is not valid, prints all discovered errors.
4165         #
4166         #  @ref tui_measurement_tools_page "Example 1"
4167         #  \n @ref swig_CheckCompoundOfBlocks "Example 2"
4168         def CheckCompoundOfBlocks(self,theCompound):
4169             # Example: see GEOM_Spanner.py
4170             (IsValid, BCErrors) = self.BlocksOp.CheckCompoundOfBlocks(theCompound)
4171             RaiseIfFailed("CheckCompoundOfBlocks", self.BlocksOp)
4172             if IsValid == 0:
4173                 Descr = self.BlocksOp.PrintBCErrors(theCompound, BCErrors)
4174                 print Descr
4175             return IsValid
4176
4177         ## Remove all seam and degenerated edges from \a theShape.
4178         #  Unite faces and edges, sharing one surface. It means that
4179         #  this faces must have references to one C++ surface object (handle).
4180         #  @param theShape The compound or single solid to remove irregular edges from.
4181         #  @param doUnionFaces If True, then unite faces. If False (the default value),
4182         #         do not unite faces.
4183         #  @return Improved shape.
4184         #
4185         #  @ref swig_RemoveExtraEdges "Example"
4186         def RemoveExtraEdges(self, theShape, doUnionFaces=False):
4187             # Example: see GEOM_TestOthers.py
4188             nbFacesOptimum = -1 # -1 means do not unite faces
4189             if doUnionFaces is True: nbFacesOptimum = 0 # 0 means unite faces
4190             anObj = self.BlocksOp.RemoveExtraEdges(theShape, nbFacesOptimum)
4191             RaiseIfFailed("RemoveExtraEdges", self.BlocksOp)
4192             return anObj
4193
4194         ## Check, if the given shape is a blocks compound.
4195         #  Fix all detected errors.
4196         #    \note Single block can be also fixed by this method.
4197         #  @param theShape The compound to check and improve.
4198         #  @return Improved compound.
4199         #
4200         #  @ref swig_CheckAndImprove "Example"
4201         def CheckAndImprove(self,theShape):
4202             # Example: see GEOM_TestOthers.py
4203             anObj = self.BlocksOp.CheckAndImprove(theShape)
4204             RaiseIfFailed("CheckAndImprove", self.BlocksOp)
4205             return anObj
4206
4207         # end of l4_blocks_measure
4208         ## @}
4209
4210         ## @addtogroup l3_blocks_op
4211         ## @{
4212
4213         ## Get all the blocks, contained in the given compound.
4214         #  @param theCompound The compound to explode.
4215         #  @param theMinNbFaces If solid has lower number of faces, it is not a block.
4216         #  @param theMaxNbFaces If solid has higher number of faces, it is not a block.
4217         #    \note If theMaxNbFaces = 0, the maximum number of faces is not restricted.
4218         #  @return List of GEOM_Objects, containing the retrieved blocks.
4219         #
4220         #  @ref tui_explode_on_blocks "Example 1"
4221         #  \n @ref swig_MakeBlockExplode "Example 2"
4222         def MakeBlockExplode(self,theCompound, theMinNbFaces, theMaxNbFaces):
4223             # Example: see GEOM_TestOthers.py
4224             theMinNbFaces,theMaxNbFaces,Parameters = ParseParameters(theMinNbFaces,theMaxNbFaces)
4225             aList = self.BlocksOp.ExplodeCompoundOfBlocks(theCompound, theMinNbFaces, theMaxNbFaces)
4226             RaiseIfFailed("ExplodeCompoundOfBlocks", self.BlocksOp)
4227             for anObj in aList:
4228                 anObj.SetParameters(Parameters)
4229                 pass
4230             return aList
4231
4232         ## Find block, containing the given point inside its volume or on boundary.
4233         #  @param theCompound Compound, to find block in.
4234         #  @param thePoint Point, close to the desired block. If the point lays on
4235         #         boundary between some blocks, we return block with nearest center.
4236         #  @return New GEOM_Object, containing the found block.
4237         #
4238         #  @ref swig_todo "Example"
4239         def GetBlockNearPoint(self,theCompound, thePoint):
4240             # Example: see GEOM_Spanner.py
4241             anObj = self.BlocksOp.GetBlockNearPoint(theCompound, thePoint)
4242             RaiseIfFailed("GetBlockNearPoint", self.BlocksOp)
4243             return anObj
4244
4245         ## Find block, containing all the elements, passed as the parts, or maximum quantity of them.
4246         #  @param theCompound Compound, to find block in.
4247         #  @param theParts List of faces and/or edges and/or vertices to be parts of the found block.
4248         #  @return New GEOM_Object, containing the found block.
4249         #
4250         #  @ref swig_GetBlockByParts "Example"
4251         def GetBlockByParts(self,theCompound, theParts):
4252             # Example: see GEOM_TestOthers.py
4253             anObj = self.BlocksOp.GetBlockByParts(theCompound, theParts)
4254             RaiseIfFailed("GetBlockByParts", self.BlocksOp)
4255             return anObj
4256
4257         ## Return all blocks, containing all the elements, passed as the parts.
4258         #  @param theCompound Compound, to find blocks in.
4259         #  @param theParts List of faces and/or edges and/or vertices to be parts of the found blocks.
4260         #  @return List of GEOM_Objects, containing the found blocks.
4261         #
4262         #  @ref swig_todo "Example"
4263         def GetBlocksByParts(self,theCompound, theParts):
4264             # Example: see GEOM_Spanner.py
4265             aList = self.BlocksOp.GetBlocksByParts(theCompound, theParts)
4266             RaiseIfFailed("GetBlocksByParts", self.BlocksOp)
4267             return aList
4268
4269         ## Multi-transformate block and glue the result.
4270         #  Transformation is defined so, as to superpose direction faces.
4271         #  @param Block Hexahedral solid to be multi-transformed.
4272         #  @param DirFace1 ID of First direction face.
4273         #  @param DirFace2 ID of Second direction face.
4274         #  @param NbTimes Quantity of transformations to be done.
4275         #    \note Unique ID of sub-shape can be obtained, using method GetSubShapeID().
4276         #  @return New GEOM_Object, containing the result shape.
4277         #
4278         #  @ref tui_multi_transformation "Example"
4279         def MakeMultiTransformation1D(self,Block, DirFace1, DirFace2, NbTimes):
4280             # Example: see GEOM_Spanner.py
4281             DirFace1,DirFace2,NbTimes,Parameters = ParseParameters(DirFace1,DirFace2,NbTimes)
4282             anObj = self.BlocksOp.MakeMultiTransformation1D(Block, DirFace1, DirFace2, NbTimes)
4283             RaiseIfFailed("MakeMultiTransformation1D", self.BlocksOp)
4284             anObj.SetParameters(Parameters)
4285             return anObj
4286
4287         ## Multi-transformate block and glue the result.
4288         #  @param Block Hexahedral solid to be multi-transformed.
4289         #  @param DirFace1U,DirFace2U IDs of Direction faces for the first transformation.
4290         #  @param DirFace1V,DirFace2V IDs of Direction faces for the second transformation.
4291         #  @param NbTimesU,NbTimesV Quantity of transformations to be done.
4292         #  @return New GEOM_Object, containing the result shape.
4293         #
4294         #  @ref tui_multi_transformation "Example"
4295         def MakeMultiTransformation2D(self,Block, DirFace1U, DirFace2U, NbTimesU,
4296                                       DirFace1V, DirFace2V, NbTimesV):
4297             # Example: see GEOM_Spanner.py
4298             DirFace1U,DirFace2U,NbTimesU,DirFace1V,DirFace2V,NbTimesV,Parameters = ParseParameters(
4299               DirFace1U,DirFace2U,NbTimesU,DirFace1V,DirFace2V,NbTimesV)
4300             anObj = self.BlocksOp.MakeMultiTransformation2D(Block, DirFace1U, DirFace2U, NbTimesU,
4301                                                             DirFace1V, DirFace2V, NbTimesV)
4302             RaiseIfFailed("MakeMultiTransformation2D", self.BlocksOp)
4303             anObj.SetParameters(Parameters)
4304             return anObj
4305
4306         ## Build all possible propagation groups.
4307         #  Propagation group is a set of all edges, opposite to one (main)
4308         #  edge of this group directly or through other opposite edges.
4309         #  Notion of Opposite Edge make sence only on quadrangle face.
4310         #  @param theShape Shape to build propagation groups on.
4311         #  @return List of GEOM_Objects, each of them is a propagation group.
4312         #
4313         #  @ref swig_Propagate "Example"
4314         def Propagate(self,theShape):
4315             # Example: see GEOM_TestOthers.py
4316             listChains = self.BlocksOp.Propagate(theShape)
4317             RaiseIfFailed("Propagate", self.BlocksOp)
4318             return listChains
4319
4320         # end of l3_blocks_op
4321         ## @}
4322
4323         ## @addtogroup l3_groups
4324         ## @{
4325
4326         ## Creates a new group which will store sub shapes of theMainShape
4327         #  @param theMainShape is a GEOM object on which the group is selected
4328         #  @param theShapeType defines a shape type of the group
4329         #  @return a newly created GEOM group
4330         #
4331         #  @ref tui_working_with_groups_page "Example 1"
4332         #  \n @ref swig_CreateGroup "Example 2"
4333         def CreateGroup(self,theMainShape, theShapeType):
4334             # Example: see GEOM_TestOthers.py
4335             anObj = self.GroupOp.CreateGroup(theMainShape, theShapeType)
4336             RaiseIfFailed("CreateGroup", self.GroupOp)
4337             return anObj
4338
4339         ## Adds a sub object with ID theSubShapeId to the group
4340         #  @param theGroup is a GEOM group to which the new sub shape is added
4341         #  @param theSubShapeID is a sub shape ID in the main object.
4342         #  \note Use method GetSubShapeID() to get an unique ID of the sub shape
4343         #
4344         #  @ref tui_working_with_groups_page "Example"
4345         def AddObject(self,theGroup, theSubShapeID):
4346             # Example: see GEOM_TestOthers.py
4347             self.GroupOp.AddObject(theGroup, theSubShapeID)
4348             if self.GroupOp.GetErrorCode() != "PAL_ELEMENT_ALREADY_PRESENT":
4349                 RaiseIfFailed("AddObject", self.GroupOp)
4350                 pass
4351             pass
4352
4353         ## Removes a sub object with ID \a theSubShapeId from the group
4354         #  @param theGroup is a GEOM group from which the new sub shape is removed
4355         #  @param theSubShapeID is a sub shape ID in the main object.
4356         #  \note Use method GetSubShapeID() to get an unique ID of the sub shape
4357         #
4358         #  @ref tui_working_with_groups_page "Example"
4359         def RemoveObject(self,theGroup, theSubShapeID):
4360             # Example: see GEOM_TestOthers.py
4361             self.GroupOp.RemoveObject(theGroup, theSubShapeID)
4362             RaiseIfFailed("RemoveObject", self.GroupOp)
4363             pass
4364
4365         ## Adds to the group all the given shapes. No errors, if some shapes are alredy included.
4366         #  @param theGroup is a GEOM group to which the new sub shapes are added.
4367         #  @param theSubShapes is a list of sub shapes to be added.
4368         #
4369         #  @ref tui_working_with_groups_page "Example"
4370         def UnionList (self,theGroup, theSubShapes):
4371             # Example: see GEOM_TestOthers.py
4372             self.GroupOp.UnionList(theGroup, theSubShapes)
4373             RaiseIfFailed("UnionList", self.GroupOp)
4374             pass
4375
4376         ## Works like the above method, but argument
4377         #  theSubShapes here is a list of sub-shapes indices
4378         #
4379         #  @ref swig_UnionIDs "Example"
4380         def UnionIDs(self,theGroup, theSubShapes):
4381             # Example: see GEOM_TestOthers.py
4382             self.GroupOp.UnionIDs(theGroup, theSubShapes)
4383             RaiseIfFailed("UnionIDs", self.GroupOp)
4384             pass
4385
4386         ## Removes from the group all the given shapes. No errors, if some shapes are not included.
4387         #  @param theGroup is a GEOM group from which the sub-shapes are removed.
4388         #  @param theSubShapes is a list of sub-shapes to be removed.
4389         #
4390         #  @ref tui_working_with_groups_page "Example"
4391         def DifferenceList (self,theGroup, theSubShapes):
4392             # Example: see GEOM_TestOthers.py
4393             self.GroupOp.DifferenceList(theGroup, theSubShapes)
4394             RaiseIfFailed("DifferenceList", self.GroupOp)
4395             pass
4396
4397         ## Works like the above method, but argument
4398         #  theSubShapes here is a list of sub-shapes indices
4399         #
4400         #  @ref swig_DifferenceIDs "Example"
4401         def DifferenceIDs(self,theGroup, theSubShapes):
4402             # Example: see GEOM_TestOthers.py
4403             self.GroupOp.DifferenceIDs(theGroup, theSubShapes)
4404             RaiseIfFailed("DifferenceIDs", self.GroupOp)
4405             pass
4406
4407         ## Returns a list of sub objects ID stored in the group
4408         #  @param theGroup is a GEOM group for which a list of IDs is requested
4409         #
4410         #  @ref swig_GetObjectIDs "Example"
4411         def GetObjectIDs(self,theGroup):
4412             # Example: see GEOM_TestOthers.py
4413             ListIDs = self.GroupOp.GetObjects(theGroup)
4414             RaiseIfFailed("GetObjects", self.GroupOp)
4415             return ListIDs
4416
4417         ## Returns a type of sub objects stored in the group
4418         #  @param theGroup is a GEOM group which type is returned.
4419         #
4420         #  @ref swig_GetType "Example"
4421         def GetType(self,theGroup):
4422             # Example: see GEOM_TestOthers.py
4423             aType = self.GroupOp.GetType(theGroup)
4424             RaiseIfFailed("GetType", self.GroupOp)
4425             return aType
4426
4427         ## Convert a type of geom object from id to string value
4428         #  @param theId is a GEOM obect type id.
4429         #
4430         #  @ref swig_GetType "Example"
4431         def ShapeIdToType(self, theId):
4432             if theId == 0:
4433                 return "COPY"
4434             if theId == 1:
4435                 return "IMPORT"
4436             if theId == 2:
4437                 return "POINT"
4438             if theId == 3:
4439                 return "VECTOR"
4440             if theId == 4:
4441                 return "PLANE"
4442             if theId == 5:
4443                 return "LINE"
4444             if theId == 6:
4445                 return "TORUS"
4446             if theId == 7:
4447                 return "BOX"
4448             if theId == 8:
4449                 return "CYLINDER"
4450             if theId == 9:
4451                 return "CONE"
4452             if theId == 10:
4453                 return "SPHERE"
4454             if theId == 11:
4455                 return "PRISM"
4456             if theId == 12:
4457                 return "REVOLUTION"
4458             if theId == 13:
4459                 return "BOOLEAN"
4460             if theId == 14:
4461                 return "PARTITION"
4462             if theId == 15:
4463                 return "POLYLINE"
4464             if theId == 16:
4465                 return "CIRCLE"
4466             if theId == 17:
4467                 return "SPLINE"
4468             if theId == 18:
4469                 return "ELLIPSE"
4470             if theId == 19:
4471                 return "CIRC_ARC"
4472             if theId == 20:
4473                 return "FILLET"
4474             if theId == 21:
4475                 return "CHAMFER"
4476             if theId == 22:
4477                 return "EDGE"
4478             if theId == 23:
4479                 return "WIRE"
4480             if theId == 24:
4481                 return "FACE"
4482             if theId == 25:
4483                 return "SHELL"
4484             if theId == 26:
4485                 return "SOLID"
4486             if theId == 27:
4487                 return "COMPOUND"
4488             if theId == 28:
4489                 return "SUBSHAPE"
4490             if theId == 29:
4491                 return "PIPE"
4492             if theId == 30:
4493                 return "ARCHIMEDE"
4494             if theId == 31:
4495                 return "FILLING"
4496             if theId == 32:
4497                 return "EXPLODE"
4498             if theId == 33:
4499                 return "GLUED"
4500             if theId == 34:
4501                 return "SKETCHER"
4502             if theId == 35:
4503                 return "CDG"
4504             if theId == 36:
4505                 return "FREE_BOUNDS"
4506             if theId == 37:
4507                 return "GROUP"
4508             if theId == 38:
4509                 return "BLOCK"
4510             if theId == 39:
4511                 return "MARKER"
4512             if theId == 40:
4513                 return "THRUSECTIONS"
4514             if theId == 41:
4515                 return "COMPOUNDFILTER"
4516             if theId == 42:
4517                 return "SHAPES_ON_SHAPE"
4518             if theId == 43:
4519                 return "ELLIPSE_ARC"
4520             if theId == 44:
4521                 return "3DSKETCHER"
4522             if theId == 45:
4523                 return "FILLET_2D"
4524             if theId == 46:
4525                 return "FILLET_1D"
4526             return "Shape Id not exist."
4527
4528         ## Returns a main shape associated with the group
4529         #  @param theGroup is a GEOM group for which a main shape object is requested
4530         #  @return a GEOM object which is a main shape for theGroup
4531         #
4532         #  @ref swig_GetMainShape "Example"
4533         def GetMainShape(self,theGroup):
4534             # Example: see GEOM_TestOthers.py
4535             anObj = self.GroupOp.GetMainShape(theGroup)
4536             RaiseIfFailed("GetMainShape", self.GroupOp)
4537             return anObj
4538
4539         ## Create group of edges of theShape, whose length is in range [min_length, max_length].
4540         #  If include_min/max == 0, edges with length == min/max_length will not be included in result.
4541         #
4542         #  @ref swig_todo "Example"
4543         def GetEdgesByLength (self, theShape, min_length, max_length, include_min = 1, include_max = 1):
4544             edges = self.SubShapeAll(theShape, ShapeType["EDGE"])
4545             edges_in_range = []
4546             for edge in edges:
4547                 Props = self.BasicProperties(edge)
4548                 if min_length <= Props[0] and Props[0] <= max_length:
4549                     if (not include_min) and (min_length == Props[0]):
4550                         skip = 1
4551                     else:
4552                         if (not include_max) and (Props[0] == max_length):
4553                             skip = 1
4554                         else:
4555                             edges_in_range.append(edge)
4556
4557             if len(edges_in_range) <= 0:
4558                 print "No edges found by given criteria"
4559                 return 0
4560
4561             group_edges = self.CreateGroup(theShape, ShapeType["EDGE"])
4562             self.UnionList(group_edges, edges_in_range)
4563
4564             return group_edges
4565
4566         ## Create group of edges of selected shape, whose length is in range [min_length, max_length].
4567         #  If include_min/max == 0, edges with length == min/max_length will not be included in result.
4568         #
4569         #  @ref swig_todo "Example"
4570         def SelectEdges (self, min_length, max_length, include_min = 1, include_max = 1):
4571             nb_selected = sg.SelectedCount()
4572             if nb_selected < 1:
4573                 print "Select a shape before calling this function, please."
4574                 return 0
4575             if nb_selected > 1:
4576                 print "Only one shape must be selected"
4577                 return 0
4578
4579             id_shape = sg.getSelected(0)
4580             shape = IDToObject( id_shape )
4581
4582             group_edges = self.GetEdgesByLength(shape, min_length, max_length, include_min, include_max)
4583
4584             left_str  = " < "
4585             right_str = " < "
4586             if include_min: left_str  = " <= "
4587             if include_max: right_str  = " <= "
4588
4589             self.addToStudyInFather(shape, group_edges, "Group of edges with " + `min_length`
4590                                     + left_str + "length" + right_str + `max_length`)
4591
4592             sg.updateObjBrowser(1)
4593
4594             return group_edges
4595
4596         # end of l3_groups
4597         ## @}
4598
4599         ## @addtogroup l4_advanced
4600         ## @{
4601
4602         ## Create a T-shape object with specified caracteristics for the main
4603         #  and the incident pipes (radius, width, half-length).
4604         #  The extremities of the main pipe are located on junctions points P1 and P2.
4605         #  The extremity of the incident pipe is located on junction point P3.
4606         #  If P1, P2 and P3 are not given, the center of the shape is (0,0,0) and
4607         #  the main plane of the T-shape is XOY.
4608         #  @param theR1 Internal radius of main pipe
4609         #  @param theW1 Width of main pipe
4610         #  @param theL1 Half-length of main pipe
4611         #  @param theR2 Internal radius of incident pipe (R2 < R1)
4612         #  @param theW2 Width of incident pipe (R2+W2 < R1+W1)
4613         #  @param theL2 Half-length of incident pipe
4614         #  @param theHexMesh Boolean indicating if shape is prepared for hex mesh (default=True)
4615         #  @param theP1 1st junction point of main pipe
4616         #  @param theP2 2nd junction point of main pipe
4617         #  @param theP3 Junction point of incident pipe
4618         #  @return List of GEOM_Objects, containing the created shape and propagation groups.
4619         #
4620         #  @ref tui_creation_pipetshape "Example"
4621         def MakePipeTShape(self, theR1, theW1, theL1, theR2, theW2, theL2, theHexMesh=True, theP1=None, theP2=None, theP3=None):
4622             theR1, theW1, theL1, theR2, theW2, theL2, Parameters = ParseParameters(theR1, theW1, theL1, theR2, theW2, theL2)
4623             if (theP1 and theP2 and theP3):
4624                 anObj = self.AdvOp.MakePipeTShapeWithPosition(theR1, theW1, theL1, theR2, theW2, theL2, theHexMesh, theP1, theP2, theP3)
4625             else:
4626                 anObj = self.AdvOp.MakePipeTShape(theR1, theW1, theL1, theR2, theW2, theL2, theHexMesh)
4627             RaiseIfFailed("MakePipeTShape", self.AdvOp)
4628             if Parameters: anObj[0].SetParameters(Parameters)
4629             return anObj
4630
4631         ## Create a T-shape object with chamfer and with specified caracteristics for the main
4632         #  and the incident pipes (radius, width, half-length). The chamfer is
4633         #  created on the junction of the pipes.
4634         #  The extremities of the main pipe are located on junctions points P1 and P2.
4635         #  The extremity of the incident pipe is located on junction point P3.
4636         #  If P1, P2 and P3 are not given, the center of the shape is (0,0,0) and
4637         #  the main plane of the T-shape is XOY.
4638         #  @param theR1 Internal radius of main pipe
4639         #  @param theW1 Width of main pipe
4640         #  @param theL1 Half-length of main pipe
4641         #  @param theR2 Internal radius of incident pipe (R2 < R1)
4642         #  @param theW2 Width of incident pipe (R2+W2 < R1+W1)
4643         #  @param theL2 Half-length of incident pipe
4644         #  @param theH Height of the chamfer.
4645         #  @param theW Width of the chamfer.
4646         #  @param theHexMesh Boolean indicating if shape is prepared for hex mesh (default=True)
4647         #  @param theP1 1st junction point of main pipe
4648         #  @param theP2 2nd junction point of main pipe
4649         #  @param theP3 Junction point of incident pipe
4650         #  @return List of GEOM_Objects, containing the created shape and propagation groups.
4651         #
4652         #  @ref tui_creation_pipetshape "Example"
4653         def MakePipeTShapeChamfer(self, theR1, theW1, theL1, theR2, theW2, theL2, theH, theW, theHexMesh=True, theP1=None, theP2=None, theP3=None):
4654             theR1, theW1, theL1, theR2, theW2, theL2, theH, theW, Parameters = ParseParameters(theR1, theW1, theL1, theR2, theW2, theL2, theH, theW)
4655             if (theP1 and theP2 and theP3):
4656               anObj = self.AdvOp.MakePipeTShapeChamferWithPosition(theR1, theW1, theL1, theR2, theW2, theL2, theH, theW, theHexMesh, theP1, theP2, theP3)
4657             else:
4658               anObj = self.AdvOp.MakePipeTShapeChamfer(theR1, theW1, theL1, theR2, theW2, theL2, theH, theW, theHexMesh)
4659             RaiseIfFailed("MakePipeTShapeChamfer", self.AdvOp)
4660             if Parameters: anObj[0].SetParameters(Parameters)
4661             return anObj
4662
4663         ## Create a T-shape object with fillet and with specified caracteristics for the main
4664         #  and the incident pipes (radius, width, half-length). The fillet is
4665         #  created on the junction of the pipes.
4666         #  The extremities of the main pipe are located on junctions points P1 and P2.
4667         #  The extremity of the incident pipe is located on junction point P3.
4668         #  If P1, P2 and P3 are not given, the center of the shape is (0,0,0) and
4669         #  the main plane of the T-shape is XOY.
4670         #  @param theR1 Internal radius of main pipe
4671         #  @param theW1 Width of main pipe
4672         #  @param theL1 Half-length of main pipe
4673         #  @param theR2 Internal radius of incident pipe (R2 < R1)
4674         #  @param theW2 Width of incident pipe (R2+W2 < R1+W1)
4675         #  @param theL2 Half-length of incident pipe
4676         #  @param theRF Radius of curvature of fillet.
4677         #  @param theHexMesh Boolean indicating if shape is prepared for hex mesh (default=True)
4678         #  @param theP1 1st junction point of main pipe
4679         #  @param theP2 2nd junction point of main pipe
4680         #  @param theP3 Junction point of incident pipe
4681         #  @return List of GEOM_Objects, containing the created shape and propagation groups.
4682         #
4683         #  @ref tui_creation_pipetshape "Example"
4684         def MakePipeTShapeFillet(self, theR1, theW1, theL1, theR2, theW2, theL2, theRF, theHexMesh=True, theP1=None, theP2=None, theP3=None):
4685             theR1, theW1, theL1, theR2, theW2, theL2, theRF, Parameters = ParseParameters(theR1, theW1, theL1, theR2, theW2, theL2, theRF)
4686             if (theP1 and theP2 and theP3):
4687               anObj = self.AdvOp.MakePipeTShapeFilletWithPosition(theR1, theW1, theL1, theR2, theW2, theL2, theRF, theHexMesh, theP1, theP2, theP3)
4688             else:
4689               anObj = self.AdvOp.MakePipeTShapeFillet(theR1, theW1, theL1, theR2, theW2, theL2, theRF, theHexMesh)
4690             RaiseIfFailed("MakePipeTShapeFillet", self.AdvOp)
4691             if Parameters: anObj[0].SetParameters(Parameters)
4692             return anObj
4693
4694         #@@ insert new functions before this line @@ do not remove this line @@#
4695
4696         # end of l4_advanced
4697         ## @}
4698
4699         ## Create a copy of the given object
4700         #  @ingroup l1_geompy_auxiliary
4701         #
4702         #  @ref swig_all_advanced "Example"
4703         def MakeCopy(self,theOriginal):
4704             # Example: see GEOM_TestAll.py
4705             anObj = self.InsertOp.MakeCopy(theOriginal)
4706             RaiseIfFailed("MakeCopy", self.InsertOp)
4707             return anObj
4708
4709         ## Add Path to load python scripts from
4710         #  @ingroup l1_geompy_auxiliary
4711         def addPath(self,Path):
4712             if (sys.path.count(Path) < 1):
4713                 sys.path.append(Path)
4714                 pass
4715             pass
4716
4717         ## Load marker texture from the file
4718         #  @param Path a path to the texture file
4719         #  @return unique texture identifier
4720         #  @ingroup l1_geompy_auxiliary
4721         def LoadTexture(self, Path):
4722             # Example: see GEOM_TestAll.py
4723             ID = self.InsertOp.LoadTexture(Path)
4724             RaiseIfFailed("LoadTexture", self.InsertOp)
4725             return ID
4726
4727         ## Get entry of the object
4728         #  @param obj geometry object
4729         #  @return unique object identifier
4730         #  @ingroup l1_geompy_auxiliary
4731         def getObjectID(self, obj):
4732             ID = ""
4733             entry = salome.ObjectToID(obj)
4734             if entry is not None:
4735                 lst = entry.split(":")
4736                 if len(lst) > 0:
4737                     ID = lst[-1] # -1 means last item in the list            
4738                     return "GEOM_" + ID
4739             return ID
4740                 
4741             
4742
4743         ## Add marker texture. @a Width and @a Height parameters
4744         #  specify width and height of the texture in pixels.
4745         #  If @a RowData is @c True, @a Texture parameter should represent texture data
4746         #  packed into the byte array. If @a RowData is @c False (default), @a Texture
4747         #  parameter should be unpacked string, in which '1' symbols represent opaque
4748         #  pixels and '0' represent transparent pixels of the texture bitmap.
4749         #
4750         #  @param Width texture width in pixels
4751         #  @param Height texture height in pixels
4752         #  @param Texture texture data
4753         #  @param RowData if @c True, @a Texture data are packed in the byte stream
4754         #  @ingroup l1_geompy_auxiliary
4755         def AddTexture(self, Width, Height, Texture, RowData=False):
4756             # Example: see GEOM_TestAll.py
4757             if not RowData: Texture = PackData(Texture)
4758             ID = self.InsertOp.AddTexture(Width, Height, Texture)
4759             RaiseIfFailed("AddTexture", self.InsertOp)
4760             return ID
4761
4762 import omniORB
4763 #Register the new proxy for GEOM_Gen
4764 omniORB.registerObjref(GEOM._objref_GEOM_Gen._NP_RepositoryId, geompyDC)