Salome HOME
f8642857cca1c9aa37ea48eb734f52bcf55a189a
[modules/geom.git] / idl / GEOM_Gen.idl
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  File   : GEOM_Gen.idl
23 //  Author : Sergey RUIN
24
25 #ifndef __GEOM_GEN__
26 #define __GEOM_GEN__
27
28 #include "SALOME_Exception.idl"
29 #include "SALOME_Component.idl"
30 #include "SALOMEDS.idl"
31 #include "SALOMEDS_Attributes.idl"
32
33 #include "SALOME_GenericObj.idl"
34
35 module GEOM
36 {
37   /*!
38    *  \brief Topological types of shapes (like Open Cascade types)
39    */
40   enum shape_type 
41   { 
42     /*!  */
43     COMPOUND,
44     /*! A collection of solids */ 
45     COMPSOLID, 
46     /*! A part of 3D space bound by a shell */
47     SOLID, 
48     /*! A collection of faces connected by some edges of their wire boundaries */
49     SHELL,
50     /*! Part of a plane (in 2D geometry) or a surface (in 3D geometry) bounded by a close wire */
51     FACE, 
52     /*!  A sequence of edges connected by their vertices */
53     WIRE, 
54     /*! Edge, a shape corresponding to a curve, and bound by a vertex at each extremity */
55     EDGE, 
56     /*! A zero-dimensional shape corresponding to a point in geometry */
57     VERTEX,
58     /*!  */ 
59     SHAPE };
60
61   /*!
62    * \brief Marker type
63    */
64   enum marker_type { MT_NONE, MT_POINT, MT_PLUS, MT_STAR, MT_O, MT_X, MT_O_POINT, MT_O_PLUS,
65                      MT_O_STAR, MT_O_X, MT_BALL, MT_RING1, MT_RING2, MT_RING3, MT_USER };
66
67   /*!
68    * /brief Marker size
69    */
70   enum marker_size { MS_NONE, MS_10, MS_15, MS_20, MS_25, MS_30, MS_35,
71                      MS_40, MS_45, MS_50, MS_55, MS_60, MS_65, MS_70 };
72
73   /*!
74    *  \brief State of shape relatively geometrical surface like plane, sphere or cylinder.
75    *
76    *  Is used in functions GEOM_IShapesOperations.GetShapesOn<xxx>()
77    */
78   enum shape_state
79   {
80     /*! Shape is on surface */
81     ST_ON,
82
83     /*!
84      *  Shape is in the direction defined by the normal and not on surface.
85      *  For plane it means above the plane,
86      *  For sphere and cylinder it means outside of volume, bounded by the surface.
87      */
88     ST_OUT,
89     
90     /*!
91      *  Shape is in the direction defined by the normal and on surface.
92      *  ONOUT = ON || OUT
93      */
94     ST_ONOUT,
95
96     /*!
97      *  Complementary to ONOUT.
98      *  For plane it means below the plane,
99      *  For sphere and cylinder it means inside the volume, bounded by the surface
100      *  (beyond axis and surface for cylinder and beyond cented and surface for sphere).
101      */
102     ST_IN,
103
104     /*!
105      *  Complementary to OUT.
106      *  ONIN = ON || IN
107      */
108     ST_ONIN
109   };
110
111   /*!
112    *  \brief Kind of method to find inside one main shape some sub-shapes,
113    *  corresponding to other given shape (its argument)
114    *
115    *  Is used in functions GEOM_Gen.RestoreSubShapesO(), GEOM_Gen.RestoreSubShapesSO()
116    */
117   enum find_shape_method
118   {
119     /*! Use GetInPlace functionality. Suits all cases, except transformations */
120     FSM_GetInPlace,
121
122     /*! To be used only for transformation result, to find sub-shapes of argument.
123      *  Only this method can be used after transformation.
124      */
125     FSM_Transformed,
126
127     /*! To find only shared sub-shapes, not modified by the operation */
128     FSM_GetSame,
129
130     /*! Use GetShapesOnShape method (can work only on solids) */
131     FSM_GetShapesOnShape,
132
133     /*! Use GetInPlaceByHistory method (can work only after Partition) */
134     FSM_GetInPlaceByHistory,
135
136     /*! To be used only for multi-transformation result.
137      *  Only this method can be used after multi-transformation.
138      */
139     FSM_MultiTransformed
140   };
141
142   /*!
143    *  \brief Kind of method to perform filling operation
144    *
145    *  Is used in functions GEOM_I3DPrimOperations.MakeFilling()
146    */
147   enum filling_oper_method
148   {
149     /*! Default (standard behaviour) */
150     FOM_Default,
151
152     /*! Use edges orientation  - orientation of edges is used: if the edge is 
153      * reversed, the curve from this edge is reversed before using it in 
154      *  the filling algorithm.
155      */
156     FOM_UseOri,
157
158     /*! Auto-correct edges orientation - changes the orientation of the curves 
159      *  using minimization of sum of distances between the end points of the edges.
160      */
161     FOM_AutoCorrect
162   };
163
164   /*!
165    * \brief Kind of the curves.
166    *
167    * Used in the functions GEOM_ICurvesOperations.MakeCurveParametric(), GEOM_ICurvesOperations.MakeCurveParametricNew()
168    */
169   enum curve_type {
170     /*! Polyline curve */
171     Polyline,
172     
173     /*! Bezier curve */
174     Bezier,
175
176     /*! Interpolation, curve */
177     Interpolation
178   };
179
180  /*!
181    * \brief Pattern for block division of the disk
182    *
183    * Used in the functions GEOM_IAdvancedOperations.MakeDividedDisk(), GEOM_ICurvesOperations.MakeDividedDiskPntVecR()
184    */
185   enum pattern {
186     /*! Square */
187     SQUARE,
188     
189     /*! Hexagon */
190     HEXAGON
191   };
192
193
194   typedef sequence<string>      string_array;
195   typedef sequence<short>       short_array;
196   typedef sequence<boolean>     ListOfBool;
197   typedef sequence<long>        ListOfLong;
198   typedef sequence<double>      ListOfDouble;
199
200   interface GEOM_Object;
201
202   typedef sequence<GEOM_Object> ListOfGO;
203
204   //# GEOM_Object
205   /*!
206    *  \brief Interface of geometric object
207    */
208   interface GEOM_Object : SALOME::GenericObj
209   {
210
211     /*!
212      *  \brief Get internal (unique) entry of the object in the GEOM component's data tree.
213      *  \note This is not an entry of the data object in SALOME study. 
214      *  This is internal function of GEOM component, though it can be used outside it for 
215         appropriate reason (e.g. for unique identification of geometry object).
216      */
217     string GetEntry();
218
219     /*!
220      *  \brief Get ID of study, where the object is created.
221      */
222     long GetStudyID();
223
224     /*!
225      *  \brief Get internal type of the object (POINT, BOX, CYLINDER, EXTRUSION...).
226      */
227     long GetType();
228
229     /*!
230      *  \brief Get a <VAR>shape_type</VAR> of the object value.
231      */
232     shape_type GetShapeType();
233
234     /*!
235      *  \brief Get the topology type of the object value.
236      *
237      *  In contrast to the shape type, this function returns type of the most
238      *  top-level sub-shape of the COMPOUND or COMPSOLID, if there is only one
239      *  sub-shape there.
240      *  \sa GetShapeType()
241      */
242     shape_type GetTopologyType();
243
244     /*!
245      *  \brief Get a minimal type of the top-level shapes contained in the object.
246      *
247      *  This function is useful for the compounds only; for simple shapes it
248      *  exactly the same value as GetShapeType().
249      *  Note, that compounds are procesed recursively.
250      *
251      *  \sa GetShapeType(), GetTopologyType(), GetMaxShapeType()
252      */
253     shape_type GetMinShapeType();
254
255     /*!
256      *  \brief Get a maximal type of the top-level shapes contained in the object.
257      *
258      *  This function is useful for the compounds only; for simple shapes it
259      *  exactly the same value as GetShapeType().
260      *  Note, that compounds are procesed recursively.
261      *
262      *  \sa GetShapeType(), GetTopologyType(), GetMinShapeType()
263      */
264     shape_type GetMaxShapeType();
265
266     /*!
267      *  \brief Set name of the object.
268      *
269      *  \param theName is a name which will be associated with this object.
270      */
271     void SetName (in string theName);
272
273     /*!
274      *  \brief Get name of the object associated with this object.
275      */
276     string GetName();
277
278     /*!
279      *  \brief Set color of the object.
280      *
281      *  \param theColor is a color of the object.
282      */
283     void SetColor(in SALOMEDS::Color theColor);
284
285     /*!
286      *  Get color of the object.
287      */
288     SALOMEDS::Color GetColor();
289
290     /*!
291      *  Toggle auto color mode on the object.
292      *  \param theAutoColor is a flag which toggles auto color mode.
293      */
294     void SetAutoColor(in boolean theAutoColor);
295
296     /*!
297      *  \brief Get flag of object's auto color mode.
298      */
299     boolean GetAutoColor();
300
301     /*!
302      * \brief Set standard point marker for the object
303      * \param theType standard marker type
304      * \param theSize marker relative size
305      */
306     void SetMarkerStd(in marker_type theType, in marker_size theSize );
307
308     /*!
309      * \brief Set custom point marker for the object. 
310      *
311      * The texture can be added by LoadTexture() or AddTexture() functions.
312      * \param theTextureId texture ID
313      */
314     void SetMarkerTexture(in long theTextureId);
315
316     /*!
317      * \brief Get type of the point marker assigned to the object
318      * \return current marker type (MT_NONE if no marker is set)
319      */
320     marker_type GetMarkerType();
321
322     /*!
323      * \brief Get size of the point marker assigned to the object
324      * \return current marker relative size (MS_NONE if no marker is set)
325      */
326     marker_size GetMarkerSize();
327
328     /*!
329      * \brief Get texture idenifier of the point marker assigned to the object
330      * \return marker texture ID (0 if no marker set)
331      */
332     long GetMarkerTexture();
333
334     /*!
335      *  \brief Set a Study entry where this object was published.
336      */
337     void SetStudyEntry (in string theEntry);
338
339     /*!
340      *  \brief Get a Study entry where this object was published.
341      */
342     string GetStudyEntry();
343
344     /*!
345      *  \brief Get a list of all GEOM_Object on which were the arguments
346      *  when this object was constructed and modified.
347      *  \note This method is supposed to be used by GUI only.
348      */
349     ListOfGO GetDependency();
350
351     /*!
352      *  \brief Get a list of GEOM_Object on which the last function that created or modified the object depends.
353      *  \note This method is supposed to be used by GUI only.
354      */
355     ListOfGO GetLastDependency();
356
357     /*!
358      *  \brief Get the TopoDS_Shape, for colocated case only.
359      */
360     long long getShape();
361
362  //   ######################################################################
363  //   # Internal methods (For sub-shape identification)
364  //   ######################################################################
365     /*!
366      *  \brief Get geometric shape of the object as a byte stream in BRep format
367      *  \note GEOM_IInsertOperations::RestoreShape() method can be used to restore shape from a BRep stream.
368      */
369     SALOMEDS::TMPFile GetShapeStream();
370
371     /*
372      *  \brief Returns True if this object is not a sub-shape of another object.
373      */
374     boolean IsMainShape();
375
376     /*
377      *  \brief Get a list of ID's of sub-shapes in the main shape.
378      *  \note Internal method, suppopsed to be used only by GEOM_Client
379      */
380     ListOfLong GetSubShapeIndices();
381
382     /*
383      *  \brief Get a main shape object to which this object is a sub-shape
384      *  \note Internal method, suppopsed to be used only by GEOM_Client
385      */
386     GEOM_Object GetMainShape();
387
388     /*
389      *  \brief Return true if geom object representes a shape.
390      *
391      *  For example, method return false for GEOM_MARKER
392      */
393      boolean IsShape();
394
395     /*
396      *  \brief Return true if passed object is identical to this object
397      *
398      *  \param other object being compared with this one
399      */
400     boolean IsSame(in GEOM_Object other);
401
402      /*!
403      *  Set list of parameters
404      *  \param theParameters is a string containing the notebook variables separated by ":" symbol,
405      *         used for object creation
406      */
407     void SetParameters (in string theParameters);
408
409     /*!
410      *  \brief Return list of notebook variables used for object creation separated by ":" symbol
411      */
412     string GetParameters();
413   };
414
415  // # GEOM_IOperations:
416   /*!
417    *  \brief Basic methods of all geometric operations
418    */
419   interface GEOM_IOperations : SALOME::GenericObj
420   {
421     /*!
422      *  \brief To know, if the operation was successfully performed
423      */
424     boolean IsDone();
425
426     /*!
427      *  \brief Set the operation error code
428      *  \param theErrorID is a string describing the error occured
429      *  \note This method is supposed to be used only by interfaces inheriting from IOperations.
430      */
431     void SetErrorCode (in string theErrorID);
432
433     /*!
434      *  \brief Get the operation error code
435      */
436     string GetErrorCode();
437
438     /*!
439      *  \brief Get ID of study, where the operation is defined
440      */
441     long GetStudyID();
442
443     /*!
444      *  \brief Opens a new transaction
445      */
446     void StartOperation();
447
448     /*!
449      *  \brief Closes the previously opened trasaction
450      */
451     void FinishOperation();
452
453     /*!
454      *  \brief Aborts the previously opened transaction
455      */
456     void AbortOperation();
457   };
458   //# GEOM_IBasicOperations:
459   /*!
460    *  \brief Interface for basic geometry creation
461    *
462    *  (Point, Vector, Plane, Marker)
463    */
464   interface GEOM_IBasicOperations : GEOM_IOperations
465   {
466     /*!
467      *  \brief Create point by three coordinates.
468      *  \param theX The X coordinate of the point.
469      *  \param theY The Y coordinate of the point.
470      *  \param theZ The Z coordinate of the point.
471      *  \return New GEOM_Object, containing the created point.
472      */
473     GEOM_Object MakePointXYZ (in double theX, in double theY, in double theZ);
474
475     /*!
476      *  \brief Create a point, distant from the referenced point
477      *  on the given distances along the coordinate axes.
478      *  \param theReference The referenced point.
479      *  \param theX Displacement from the referenced point along OX axis.
480      *  \param theY Displacement from the referenced point along OY axis.
481      *  \param theZ Displacement from the referenced point along OZ axis.
482      *  \return New GEOM_Object, containing the created point.
483      */
484     GEOM_Object MakePointWithReference (in GEOM_Object theReference,
485                                         in double theX, in double theY, in double theZ);
486
487     /*!
488      *  Create a point, corresponding to the given parameter on the given curve.
489      *  \param theRefCurve The referenced curve.
490      *  \param theParameter Value of parameter on the referenced curve.
491      *  \return New GEOM_Object, containing the created point.
492      */
493     GEOM_Object MakePointOnCurve (in GEOM_Object theRefCurve,
494                                   in double theParameter);
495
496     /*!
497      *  \brief Create a point, corresponding to the given length on the given curve.
498      *  \param theRefCurve The referenced curve.
499      *  \param theLength Length on the referenced curve. It can be negative.
500      *  \param theStartPoint Any vertex close to one of edge's
501      *                       ends to select start point among them.
502      *                       If NULL, fist vertex is used.
503      *  \return New GEOM_Object, containing the created point.
504      */
505     GEOM_Object MakePointOnCurveByLength (in GEOM_Object theRefCurve,
506                                           in double      theLength,
507                                           in GEOM_Object theStartPoint);
508
509     /*!
510      *  \brief Create a point on the given curve, projecting given point
511      *  \param theRefCurve The referenced curve.
512      *  \param theXParameter X co-ordinate of point to project on curve
513      *  \param theYParameter Y co-ordinate of point to project on curve
514      *  \param theZParameter Z co-ordinate of point to project on curve
515      *  \return New GEOM_Object, containing the created point.
516      */
517     GEOM_Object MakePointOnCurveByCoord (in GEOM_Object theRefCurve,
518                                          in double theXParameter,
519                                          in double theYParameter,
520                                          in double theZParameter);
521
522     /*!
523      *  \brief Create a point, corresponding to the given parameters on the
524      *    given surface.
525      *  \param theRefSurf The referenced surface.
526      *  \param theUParameter Value of U-parameter on the referenced surface.
527      *  \param theVParameter Value of V-parameter on the referenced surface.
528      *  \return New GEOM_Object, containing the created point.
529      */
530     GEOM_Object MakePointOnSurface (in GEOM_Object theRefSurf,
531                                     in double theUParameter,
532                                     in double theVParameter);
533
534     /*!
535      *  \brief Create a point on the given surface, projecting given point
536      *  \param theRefSurf The referenced surface.
537      *  \param theXParameter X co-ordinate of point to project on curve
538      *  \param theYParameter Y co-ordinate of point to project on curve
539      *  \param theZParameter Z co-ordinate of point to project on curve
540      *  \return New GEOM_Object, containing the created point.
541      */
542     GEOM_Object MakePointOnSurfaceByCoord (in GEOM_Object theRefSurf,
543                                            in double theXParameter,
544                                            in double theYParameter,
545                                            in double theZParameter);
546
547     /*!
548      *  \brief Create a point, which lays on the given face.
549      *         The point will lay in arbitrary place of the face.
550      *         The only condition on it is a non-zero distance to the face boundary.
551      *         Such point can be used to uniquely identify the face inside any
552      *         shape in case, when the shape does not contain overlapped faces.
553      *  \param theFace The referenced face.
554      *  \return New GEOM_Object, containing the created point.
555      */
556     GEOM_Object MakePointOnFace (in GEOM_Object theFace);
557
558     /*!
559      *  \brief Create a point, on two lines intersection.
560      *  \param theRefLine1, theRefLine2 The referenced lines.
561      *  \return New GEOM_Object, containing the created point.
562      */
563     GEOM_Object MakePointOnLinesIntersection (in GEOM_Object theRefLine1,
564                                               in GEOM_Object theRefLine2);
565
566      /*!
567      *  \brief Create a vector, corresponding to tangent to the given parameter on the given curve.
568      *  \param theRefCurve The referenced curve.
569      *  \param theParameter Value of parameter on the referenced curve.This value should be have value
570      *                      between 0. and 1.. Value of 0. corresponds first parameter of curve; value
571      *                      1. corresponds last parameter of curve.
572      *  \return New GEOM_Object, containing the created point.
573      */
574      GEOM_Object MakeTangentOnCurve (in GEOM_Object theRefCurve,
575                                      in double theParameter);
576
577     /*!
578      *  \brief Create a vector with the given components.
579      *  \param theDX X component of the vector.
580      *  \param theDY Y component of the vector.
581      *  \param theDZ Z component of the vector.
582      *  \return New GEOM_Object, containing the created vector.
583      */
584     GEOM_Object MakeVectorDXDYDZ (in double theDX,
585                                   in double theDY,
586                                   in double theDZ);
587
588     /*!
589      *  \brief Create a vector between two points.
590      *  \param thePnt1 Start point for the vector.
591      *  \param thePnt2 End point for the vector.
592      *  \return New GEOM_Object, containing the created vector.
593      */
594     GEOM_Object MakeVectorTwoPnt (in GEOM_Object thePnt1, in GEOM_Object thePnt2);
595
596     /*!
597      *  C\brief reate a line, passing through the given point
598      *  and parrallel to the given direction
599      *  \param thePnt Point. The resulting line will pass through it.
600      *  \param theDir Direction. The resulting line will be parallel to it.
601      *  \return New GEOM_Object, containing the created line.
602      */
603     GEOM_Object MakeLine (in GEOM_Object thePnt, in GEOM_Object theDir);
604
605     /*!
606      *  \brief Create a line, passing through the given points
607      *  \param thePnt1 First of two points, defining the line.
608      *  \param thePnt2 Second of two points, defining the line.
609      *  \return New GEOM_Object, containing the created line.
610      */
611     GEOM_Object MakeLineTwoPnt (in GEOM_Object thePnt1, in GEOM_Object thePnt2);
612
613     /*!
614      *  \brief Create a line, given by two faces intersection.
615      *  \param theFace1 First of two faces, defining the line.
616      *  \param theFace2 Second of two faces, defining the line.
617      *  \return New GEOM_Object, containing the created line.
618      */
619     GEOM_Object MakeLineTwoFaces (in GEOM_Object theFace1, in GEOM_Object theFace2);
620
621     /*!
622      *  \brief Create a plane, passing through the three given points
623      *  \param thePnt1 First of three points, defining the plane.
624      *  \param thePnt2 Second of three points, defining the plane.
625      *  \param thePnt3 Fird of three points, defining the plane.
626      *  \param theTrimSize Half size of a side of quadrangle face, representing the plane.
627      *  \return New GEOM_Object, containing the created plane.
628      */
629     GEOM_Object MakePlaneThreePnt (in GEOM_Object thePnt1,
630                                    in GEOM_Object thePnt2,
631                                    in GEOM_Object thePnt3,
632                                    in double theTrimSize);
633
634     /*!
635      *  \brief Create a plane, passing through the given point
636      *  and normal to the given vector.
637      *  \param thePnt Point, the plane has to pass through.
638      *  \param theVec Vector, defining the plane normal direction.
639      *  \param theTrimSize Half size of a side of quadrangle face, representing the plane.
640      *  \return New GEOM_Object, containing the created plane.
641      */
642     GEOM_Object MakePlanePntVec (in GEOM_Object thePnt,
643                                  in GEOM_Object theVec,
644                                  in double theTrimSize);
645
646     /*!
647      *  \brief Create a plane, similar to the existing one, but with another size of representing face.
648      *  \param theFace Referenced plane or LCS(Marker).
649      *  \param theTrimSize New half size of a side of quadrangle face, representing the plane.
650      *  \return New GEOM_Object, containing the created plane.
651      */
652     GEOM_Object MakePlaneFace (in GEOM_Object theFace,
653                                in double theTrimSize);
654
655     /*!
656      *  \brief Create a plane, by two vectors.
657      *  \param theVec1 Vector1, the plane has to pass through first point of this vector.
658      *  \param theVec2 Vector2, defining the plane normal direction.
659      *  \param theTrimSize Half size of a side of quadrangle face, representing the plane.
660      *  \return New GEOM_Object, containing the created plane.
661      */
662     GEOM_Object MakePlane2Vec (in GEOM_Object theVec1,
663                                in GEOM_Object theVec2,
664                                in double theTrimSize);
665
666     /*!
667      *  \brief Create a plane, defined by local coordinate system.
668      *  \param theLCS Referenced LCS(Marker).
669      *  \param theTrimSize Half size of a side of quadrangle face, representing the plane.
670      *  \param theOrientation OXY, OYZ or OZX orientation = (1, 2 or 3).
671      *  \return New GEOM_Object, containing the created plane.
672      */
673     GEOM_Object MakePlaneLCS (in GEOM_Object theLCS,
674                               in double theTrimSize,
675                               in double theOrientation);
676
677     /*!
678      *  \brief Create a local coordinate system.
679      *  \param theOX,theOY,theOZ Three coordinates of coordinate system origin.
680      *  \param theXDX,theXDY,theXDZ Three components of OX direction
681      *  \param theYDX,theYDY,theYDZ Three components of OY direction
682      *  \return New GEOM_Object, containing the created coordinate system.
683      */
684     GEOM_Object MakeMarker (in double theOX , in double theOY , in double theOZ,
685                             in double theXDX, in double theXDY, in double theXDZ,
686                             in double theYDX, in double theYDY, in double theYDZ);
687
688     /*!
689      *  \brief Create a local coordinate system from shape.
690      *  \param theShape The initial shape to detect the coordinate system.
691      *  \return New GEOM_Object, containing the created coordinate system.
692      */
693     GEOM_Object MakeMarkerFromShape (in GEOM_Object theShape);
694
695     /*!
696      *  \brief Create a local coordinate system from point and two vectors (DX, DY).
697      *  \param theOrigin Point of coordinate system origin.
698      *  \param theXVec Vector of X direction.
699      *  \param theYVec Vector of Y direction.
700      *  \return New GEOM_Object, containing the created coordinate system.
701      */
702     GEOM_Object MakeMarkerPntTwoVec (in GEOM_Object theOrigin,
703                                      in GEOM_Object theXVec, in GEOM_Object theYVec);
704
705     /*!
706      *  \brief Create a tangent plane to specified face in the point with specified parameters.
707      *
708      *  Values of parameters should be between 0. and 1.0
709      *  \param theFace - face for which tangent plane shuold be built.
710      *  \param theParameterU - value of parameter by U
711      *  \param theParameterV - value of parameter Vthe
712      *  \param theTrimSize - defines sizes of created face
713      *  \return New GEOM_Object, containing the face built on tangent plane.
714      */
715     GEOM_Object MakeTangentPlaneOnFace(in GEOM_Object theFace,
716                                        in double theParameterU,
717                                        in double theParameterV,
718                                        in double theTrimSize);
719   };
720
721   /*!
722    *  \brief Interface for shapes transforming.
723    *
724    *  Translation, rotation, scaling, mirroring, offset, projection, recomputing.
725    */
726   interface GEOM_ITransformOperations : GEOM_IOperations
727   {
728     /*!
729      *  \brief Translate the given object along the vector, specified by its end points.
730      *  \param theObject The object to be translated.
731      *  \param thePoint1 Start point of translation vector.
732      *  \param thePoint2 End point of translation vector.
733      *  \return theObject.
734      */
735     GEOM_Object TranslateTwoPoints (in GEOM_Object theObject,
736                                     in GEOM_Object thePoint1,
737                                     in GEOM_Object thePoint2);
738
739     /*!
740      *  \brief Translate the given object along the vector, specified
741      *  by its end points, creating its copy before the translation.
742      *  \param theObject The object to be translated.
743      *  \param thePoint1 Start point of translation vector.
744      *  \param thePoint2 End point of translation vector.
745      *  \return New GEOM_Object, containing the translated object.
746      */
747     GEOM_Object TranslateTwoPointsCopy (in GEOM_Object theObject,
748                                         in GEOM_Object thePoint1,
749                                         in GEOM_Object thePoint2);
750
751     /*!
752      *  \brief Translate the given object along the vector, specified by its components.
753      *  \param theObject The object to be translated.
754      *  \param theDX,theDY,theDZ Components of translation vector.
755      *  \return theObject.
756      */
757     GEOM_Object TranslateDXDYDZ (in GEOM_Object theObject,
758                                  in double theDX, in double theDY, in double theDZ);
759
760     /*!
761      *  \brief Translate the given object along the vector, specified
762      *  by its components, creating its copy before the translation.
763      *  \param theObject The object to be translated.
764      *  \param theDX,theDY,theDZ Components of translation vector.
765      *  \return New GEOM_Object, containing the translated object.
766      */
767     GEOM_Object TranslateDXDYDZCopy (in GEOM_Object theObject,
768                                      in double theDX, in double theDY, in double theDZ);
769
770
771     /*!
772      *  \brief Translate the given object along the given vector.
773      *  \param theObject The object to be translated.
774      *  \param theVector Translation vector, giving both direction and distance.
775      *  \return theObject.
776      */
777     GEOM_Object TranslateVector (in GEOM_Object theObject,
778                                  in GEOM_Object theVector);
779
780     /*!
781      *  \brief Translate the given object along the given vector,
782      *  creating its copy before the translation.
783      *  \param theObject The object to be translated.
784      *  \param theVector Translation vector, giving both direction and distance.
785      *  \return New GEOM_Object, containing the translated object.
786      */
787     GEOM_Object TranslateVectorCopy (in GEOM_Object theObject,
788                                      in GEOM_Object theVector);
789
790     /*!
791      *  \brief Translate the given object along the given vector on given distance,
792      *  creating its copy before the translation.
793      *  \param theObject The object to be translated.
794      *  \param theVector Translation vector, giving a direction.
795      *  \param theDistance Translation distance, giving a distance.
796      *  \param theCopy Translation copy, creating its copy if true.
797      *  \return New GEOM_Object, containing the translated object.
798      */
799     GEOM_Object TranslateVectorDistance (in GEOM_Object theObject,
800                                          in GEOM_Object theVector,
801                                          in double      theDistance,
802                                          in boolean     theCopy);
803
804     /*!
805      *  \brief Translate the given object along the given vector a given number times
806      *  \param theObject The object to be translated.
807      *  \param theVector Direction of the translation. DX if None.
808      *  \param theStep Distance to translate on.
809      *  \param theNbTimes Quantity of translations to be done.
810      *  \return New GEOM_Object, containing compound of all
811      *          the shapes, obtained after each translation.
812      */
813     GEOM_Object MultiTranslate1D (in GEOM_Object theObject,
814                                   in GEOM_Object theVector,
815                                   in double theStep,
816                                   in long theNbTimes);
817
818     /*!
819      *  \brief Conseqently apply two specified translations to theObject specified number of times.
820      *  \param theObject The object to be translated.
821      *  \param theVector1 Direction of the first translation. DX if None.
822      *  \param theStep1 Step of the first translation.
823      *  \param theNbTimes1 Quantity of translations to be done along theVector1.
824      *  \param theVector2 Direction of the second translation. DY if None.
825      *  \param theStep2 Step of the second translation.
826      *  \param theNbTimes2 Quantity of translations to be done along theVector2.
827      *  \return New GEOM_Object, containing compound of all
828      *          the shapes, obtained after each translation.
829      */
830     GEOM_Object MultiTranslate2D (in GEOM_Object theObject,
831                                   in GEOM_Object theVector1,
832                                   in double theStep1,
833                                   in long theNbTimes1,
834                                   in GEOM_Object theVector2,
835                                   in double theStep2,
836                                   in long theNbTimes2);
837
838     /*!
839      *  \brief Rotate given object around vector perpendicular to plane containing three points.
840      *  \param theObject The object to be rotated.
841      *  \param theCentPoint central point - the axis is the vector perpendicular to the plane
842      *                      containing the three points.
843      *  \param thePoint1,thePoint2 - in a perpendicular plan of the axis.
844      *  \return theObject.
845      */
846     GEOM_Object RotateThreePoints (in GEOM_Object theObject,
847                                    in GEOM_Object theCentPoint,
848                                    in GEOM_Object thePoint1,
849                                    in GEOM_Object thePoint2);
850
851
852     /*!
853      *  \brief Rotate given object around vector perpendicular to plane containing three points.
854      *
855      *  Creating its copy before the rotatation.
856      *  \param theObject The object to be rotated.
857      *  \param theCentPoint central point - the axis is the vector perpendicular to the plane
858      *  containing the three points.
859      *  \param thePoint1,thePoint2 - in a perpendicular plan of the axis.
860      *  \return New GEOM_Object, containing the rotated object.
861      */
862     GEOM_Object RotateThreePointsCopy (in GEOM_Object theObject,
863                                        in GEOM_Object theCentPoint,
864                                        in GEOM_Object thePoint1,
865                                        in GEOM_Object thePoint2);
866
867     /*!
868      *  \brief Rotate the given object around the given axis on the given angle.
869      *  \param theObject The object to be rotated.
870      *  \param theAxis Rotation axis.
871      *  \param theAngle Rotation angle in radians.
872      *  \return theObject.
873      */
874     GEOM_Object Rotate (in GEOM_Object theObject,
875                         in GEOM_Object theAxis,
876                         in double theAngle);
877
878
879     /*!
880      *  Rotate the given object around the given axis
881      *  on the given angle, creating its copy before the rotatation.
882      *  \param theObject The object to be rotated.
883      *  \param theAxis Rotation axis.
884      *  \param theAngle Rotation angle in radians.
885      *  \return New GEOM_Object, containing the rotated object.
886      */
887     GEOM_Object RotateCopy (in GEOM_Object theObject,
888                             in GEOM_Object theAxis,
889                             in double theAngle);
890
891     /*!
892      *  \brief Rotate the given object around the given axis a given number times.
893      *
894      *  Rotation angle will be 2*PI/theNbObjects.
895      *  \param theObject The object to be rotated.
896      *  \param theAxis The rotation axis. DZ if None.
897      *  \param theNbObjects Quantity of rotations to be done.
898      *  \return New GEOM_Object, containing compound of all the
899      *          shapes, obtained after each rotation.
900      */
901     GEOM_Object MultiRotate1D (in GEOM_Object theObject,
902                                in GEOM_Object theAxis,
903                                in long theNbObjects);
904
905     /*!
906      *  \brief Rotate the given object around the given axis
907      *         a given number times on the given angle.
908      *
909      *  \param theObject The object to be rotated.
910      *  \param theAxis The rotation axis. DZ if None.
911      *  \param theAngleStep Rotation angle in radians.
912      *  \param theNbSteps Quantity of rotations to be done.
913      *  \return New GEOM_Object, containing compound of all the
914      *          shapes, obtained after each rotation.
915      */
916     GEOM_Object MultiRotate1DByStep (in GEOM_Object theObject,
917                                      in GEOM_Object theAxis,
918                                      in double theAngleStep,
919                                      in long theNbSteps);
920
921     /*!
922      *  \brief Rotate the given object around the given axis
923      *  a given number times and multi-translate each rotation result.
924      *
925      *  Rotation angle will be 2*PI/theNbObjects.
926      *  Translation direction passes through center of gravity
927      *  of rotated shape and its projection on the rotation axis.
928      *  \param theObject The object to be rotated.
929      *  \param theAxis Rotation axis. DZ if None.
930      *  \param theNbObjects Quantity of rotations to be done.
931      *  \param theRadialStep Translation distance.
932      *  \param theNbSteps Quantity of translations to be done.
933      *  \return New GEOM_Object, containing compound of all the
934      *          shapes, obtained after each transformation.
935      */
936     GEOM_Object MultiRotate2DNbTimes (in GEOM_Object theObject,
937                                       in GEOM_Object theAxis,
938                                       in long theNbObjects,
939                                       in double theRadialStep,
940                                       in long theNbSteps);
941
942     /*!
943      *  \brief Rotate the given object around the
944      *  given axis on the given angle a given number
945      *  times and multi-translate each rotation result.
946      *
947      *  Translation direction passes through center of gravity
948      *  of rotated shape and its projection on the rotation axis.
949      *  \param theObject The object to be rotated.
950      *  \param theAxis Rotation axis. DZ if None.
951      *  \param theAngleStep Rotation angle in radians.
952      *  \param theNbSteps1 Quantity of rotations to be done.
953      *  \param theRadialStep Translation distance.
954      *  \param theNbSteps2 Quantity of translations to be done.
955      *  \return New GEOM_Object, containing compound of all the
956      *          shapes, obtained after each transformation.
957      */
958     GEOM_Object MultiRotate2DByStep (in GEOM_Object theObject,
959                                      in GEOM_Object theAxis,
960                                      in double theAngleStep,
961                                      in long theNbSteps1,
962                                      in double theRadialStep,
963                                      in long theNbSteps2);
964
965     /*!
966      *  \brief Rotate the given object around the
967      *  given axis on the given angle a given number
968      *  times and multi-translate each rotation result.
969      *
970      *  Translation direction passes through center of gravity
971      *  of rotated shape and its projection on the rotation axis.
972      *  \param theObject The object to be rotated.
973      *  \param theAxis Rotation axis. DZ if None.
974      *  \param theAngleStep Rotation angle in degrees.
975      *  \param theNbSteps1 Quantity of rotations to be done.
976      *  \param theRadialStep Translation distance.
977      *  \param theNbSteps2 Quantity of translations to be done.
978      *  \return New GEOM_Object, containing compound of all the
979      *          shapes, obtained after each transformation.
980      */
981     GEOM_Object MultiRotate2D (in GEOM_Object theObject,
982                                in GEOM_Object theAxis,
983                                in double theAngleStep,
984                                in long theNbSteps1,
985                                in double theRadialStep,
986                                in long theNbSteps2);
987
988     /*!
989      *  \brief Replace the given object by an object,
990      *  symmetrical to it relatively the given plane.
991      *  \param theObject The object to be mirrored.
992      *  \param thePlane Plane of symmetry.
993      */
994     GEOM_Object MirrorPlane (in GEOM_Object theObject, in GEOM_Object thePlane);
995
996     /*!
997      *  \brief Create an object, symmetrical
998      *  to the given one relatively the given plane.
999      *  \param theObject The object to be mirrored.
1000      *  \param thePlane Plane of symmetry.
1001      *  \return New GEOM_Object, containing the mirrored shape.
1002      */
1003     GEOM_Object MirrorPlaneCopy (in GEOM_Object theObject, in GEOM_Object thePlane);
1004
1005     /*!
1006      *  \brief Replace the given object by an object,
1007      *  symmetrical to it relatively the given axis.
1008      *  \param theObject The object to be mirrored.
1009      *  \param theAxis Axis of symmetry.
1010      *  \return theObject.
1011      */
1012     GEOM_Object MirrorAxis (in GEOM_Object theObject, in GEOM_Object theAxis);
1013
1014     /*!
1015      *  \brief Create an object, symmetrical
1016      *  to the given one relatively the given axis.
1017      *  \param theObject The object to be mirrored.
1018      *  \param theAxis Axis of symmetry.
1019      *  \return New GEOM_Object, containing the mirrored object.
1020      */
1021     GEOM_Object MirrorAxisCopy (in GEOM_Object theObject, in GEOM_Object theAxis);
1022
1023     /*!
1024      *  \brief Replace the given object by an object, symmetrical to it relatively the given point.
1025      *  \param theObject The object to be mirrored.
1026      *  \param thePoint Point of symmetry.
1027      *  \return theObject.
1028      */
1029     GEOM_Object MirrorPoint (in GEOM_Object theObject, in GEOM_Object thePoint);
1030
1031     /*!
1032      *  \brief Create an object, symmetrical to the given one relatively the given point.
1033      *  \param theObject The object to be mirrored.
1034      *  \param thePoint Point of symmetry.
1035      *  \return New GEOM_Object, containing the mirrored object.
1036      */
1037     GEOM_Object MirrorPointCopy (in GEOM_Object theObject, in GEOM_Object thePoint);
1038
1039     /*!
1040      *  \brief Replace the given object by its offset.
1041      *  \param theObject The base object for the offset.
1042      *  \param theOffset Offset value.
1043      *  \return theObject.
1044      */
1045     GEOM_Object OffsetShape (in GEOM_Object theObject, in double theOffset);
1046
1047     /*!
1048      *  \brief Create new object as offset of the given one.
1049      *  \param theObject The base object for the offset.
1050      *  \param theOffset Offset value.
1051      *  \return New GEOM_Object, containing the offset object.
1052      */
1053     GEOM_Object OffsetShapeCopy (in GEOM_Object theObject, in double theOffset);
1054
1055     /*!
1056      *  \brief Create new object as projection of the given one on a 2D surface.
1057      *  \param theSource The source object for the projection. It can be a point, edge or wire.
1058      *  \param theTarget The target object. It can be planar or cylindrical face.
1059      *  \return New GEOM_Object, containing the projection.
1060      */
1061     GEOM_Object ProjectShapeCopy (in GEOM_Object theSource, in GEOM_Object theTarget);
1062
1063     /*!
1064      *  \brief Scale the given object by the factor.
1065      *  \param theObject The object to be scaled.
1066      *  \param thePoint Center point for scaling.
1067      *  \param theFactor Scaling factor value.
1068      *  \return theObject.
1069      */
1070     GEOM_Object ScaleShape (in GEOM_Object theObject, in GEOM_Object thePoint,
1071                             in double theFactor);
1072
1073     /*!
1074      *  \brief Scale the given object by the factor, creating its copy before the scaling.
1075      *  \param theObject The object to be scaled.
1076      *  \param thePoint Center point for scaling.
1077      *  \param theFactor Scaling factor value.
1078      *  \return New GEOM_Object, containing the scaled shape.
1079      */
1080     GEOM_Object ScaleShapeCopy (in GEOM_Object theObject, in GEOM_Object thePoint,
1081                                 in double theFactor);
1082
1083     /*!
1084      *  \brief Scale the given object by different factors along coordinate axes.
1085      *  \param theObject The object to be scaled.
1086      *  \param thePoint Center point for scaling.
1087      *  \param theFactorX,theFactorY,theFactorZ Scaling factors along each axis.
1088      *  \return theObject.
1089      */
1090     GEOM_Object ScaleShapeAlongAxes (in GEOM_Object theObject,
1091                                      in GEOM_Object thePoint,
1092                                      in double theFactorX,
1093                                      in double theFactorY,
1094                                      in double theFactorZ);
1095
1096     /*!
1097      *  \brief Scale the given object by different factors along coordinate axes,
1098      *  creating its copy before the scaling.
1099      *  \param theObject The object to be scaled.
1100      *  \param thePoint Center point for scaling.
1101      *  \param theFactorX,theFactorY,theFactorZ Scaling factors along each axis.
1102      *  \return New GEOM_Object, containing the scaled shape.
1103      */
1104     GEOM_Object ScaleShapeAlongAxesCopy (in GEOM_Object theObject,
1105                                          in GEOM_Object thePoint,
1106                                          in double theFactorX,
1107                                          in double theFactorY,
1108                                          in double theFactorZ);
1109
1110     /*!
1111      *  \brief Modify the Location of the given object by LCS.
1112      *  \param theObject The object to be displaced.
1113      *  \param theStartLCS Coordinate system to perform displacement from it.
1114      *                     If \a theStartLCS is NULL, displacement
1115      *                     will be performed from global CS.
1116      *                     If \a theObject itself is used as \a theStartLCS,
1117      *                     its location will be changed to \a theEndLCS.
1118      *  \param theEndLCS Coordinate system to perform displacement to it.
1119      *  \return theObject.
1120      */
1121     GEOM_Object PositionShape (in GEOM_Object theObject,
1122                                in GEOM_Object theStartLCS,
1123                                in GEOM_Object theEndLCS);
1124
1125     /*!
1126      *  \brief Modify the Location of the given object by LCS,
1127      *  creating its copy before the setting.
1128      *  \param theObject The object to be displaced.
1129      *  \param theStartLCS Coordinate system to perform displacement from it.
1130      *                     If \a theStartLCS is NULL, displacement
1131      *                     will be performed from global CS.
1132      *                     If \a theObject itself is used as \a theStartLCS,
1133      *                     its location will be changed to \a theEndLCS.
1134      *  \param theEndLCS Coordinate system to perform displacement to it.
1135      *  \return New GEOM_Object, containing the displaced shape.
1136      */
1137     GEOM_Object PositionShapeCopy (in GEOM_Object theObject,
1138                                    in GEOM_Object theStartLCS,
1139                                    in GEOM_Object theEndLCS);
1140
1141     /*!
1142      *  \brief Modify the Location of the given object by Path,
1143      *  \param  theObject The object to be displaced.
1144      *  \param  thePath Wire or Edge along that the object will be translated.
1145      *  \param  theDistance progress of Path (0 = actual location, 1 = end of path location).
1146      *  \param  theCopy is a true or false parameter. true is to create a copy, false to move the object.
1147      *  \param  theReverse is a true or false parameter. True is to reverse
1148      *                     direction, false is to move normal direction.
1149      *  \return New GEOM_Object, containing the displaced shape.
1150      */
1151     GEOM_Object PositionAlongPath (in GEOM_Object theObject,
1152                                    in GEOM_Object thePath,
1153                                    in double theDistance,
1154                                    in boolean theCopy,
1155                                    in boolean theReverse);
1156
1157     /*!
1158      *  \brief Recompute the shape from its arguments.
1159      *  \param theObject The object to be recomputed.
1160      *  \return theObject.
1161      */
1162     GEOM_Object RecomputeObject (in GEOM_Object theObject);
1163   };
1164   
1165   /*!
1166    *  \brief Interface for 3D primitives creation
1167    *
1168    *  Box, Cylinder, Cone, Sphere, Prism (extrusion),
1169    *  Pipe (extrusion along contour), Revolution, Solid (from shell).
1170    */
1171   interface GEOM_I3DPrimOperations : GEOM_IOperations
1172   {
1173     /*!
1174      *  \brief Create a box with specified dimensions along the coordinate axes
1175      *  and with edges, parallel to the coordinate axes.
1176      *
1177      *  Center of the box will be at point (DX/2, DY/2, DZ/2).
1178      *  \param theDX Length of Box edges, parallel to OX axis.
1179      *  \param theDY Length of Box edges, parallel to OY axis.
1180      *  \param theDZ Length of Box edges, parallel to OZ axis.
1181      *  \return New GEOM_Object, containing the created box.
1182      */
1183     GEOM_Object MakeBoxDXDYDZ (in double theDX, in double theDY, in double theDZ);
1184
1185     /*!
1186      *  \brief Create a box with two specified opposite vertices,
1187      *  and with edges, parallel to the coordinate axes
1188      *  \param thePnt1 First of two opposite vertices.
1189      *  \param thePnt2 Second of two opposite vertices.
1190      *  \return New GEOM_Object, containing the created box.
1191      */
1192     GEOM_Object MakeBoxTwoPnt (in GEOM_Object thePnt1, in GEOM_Object thePnt2);
1193
1194     /*!
1195      *  \brief Create a face specified dimensions along OX-OY coordinate axes,
1196      *  with edges parallel to the coordinate axes.
1197      *
1198      *  Center of the face will be at point (0, 0, 0).
1199      *  \param theH Height of the Face.
1200      *  \param theW Width of the Face.
1201      *  \param theOrientation Orientation belong axis OXY OYZ OZX
1202      *  \return New GEOM_Object, containing the created face.
1203      */
1204     GEOM_Object MakeFaceHW (in double theH, in double theW, in short theOrientation);
1205     /*!
1206      *  \brief Create a face by normale vector or edge and two specified sizes,
1207      *  vertical (H) and horisontal (W).
1208      *  \param theObj defines plane.
1209      *  \param theH vertical size (height).
1210      *  \param theW horisontal size (width).
1211      *  \return New GEOM_Object, containing the created face.
1212      */
1213     GEOM_Object MakeFaceObjHW (in GEOM_Object theObj, in double theH, in double theW);
1214     /*!
1215      *  \brief Create a Disk (circular face) with given center, normal vector and radius.
1216      *  \param thePnt disk center.
1217      *  \param theVec Vector, normal to the plane of the disk.
1218      *  \param theR Disk radius.
1219      *  \return New GEOM_Object, containing the created disk.
1220      */
1221     GEOM_Object MakeDiskPntVecR (in GEOM_Object thePnt,
1222                                  in GEOM_Object theVec,
1223                                  in double theR);
1224     /*!
1225      *  \brief Create a disk (circular face), passing through three given points
1226      *  \param thePnt1, thePnt2, thePnt3 Points, defining the disk.
1227      *  \return New GEOM_Object, containing the created disk.
1228      */
1229     GEOM_Object MakeDiskThreePnt (in GEOM_Object thePnt1,
1230                                   in GEOM_Object thePnt2,
1231                                   in GEOM_Object thePnt3);
1232
1233     /*!
1234      *  \brief Create a disk specified dimensions along OX-OY coordinate axes.
1235      *
1236      *  Center of the disk at point (0, 0, 0).
1237      *  \param theR of the Disk.
1238      *  \param theOrientation Orientation belong axis OXY OYZ OZX
1239      *  \return New GEOM_Object, containing the created disk.
1240      */
1241     GEOM_Object MakeDiskR (in double theR, in short theOrientation);
1242
1243     /*!
1244      *  \brief Create a cylinder with given radius and height at
1245      *  the origin of coordinate system.
1246      *
1247      *  Axis of the cylinder will be collinear to the OZ axis of the coordinate system.
1248      *  \param theR Cylinder radius.
1249      *  \param theH Cylinder height.
1250      *  \return New GEOM_Object, containing the created cylinder.
1251      */
1252     GEOM_Object MakeCylinderRH (in double theR, in double theH);
1253
1254     /*!
1255      *  \brief Create a cylinder with given base point, axis, radius and height.
1256      *  \param thePnt Central point of cylinder base.
1257      *  \param theAxis Cylinder axis.
1258      *  \param theR Cylinder radius.
1259      *  \param theH Cylinder height.
1260      *  \return New GEOM_Object, containing the created cylinder.
1261      */
1262     GEOM_Object MakeCylinderPntVecRH (in GEOM_Object thePnt,
1263                                       in GEOM_Object theAxis,
1264                                       in double      theR,
1265                                       in double      theH);
1266
1267     /*!
1268      *  \brief Create a cone with given height and radiuses at
1269      *  the origin of coordinate system. 
1270      *
1271      *  Axis of the cone will be collinear to the OZ axis of the coordinate system.
1272      *  \param theR1 Radius of the first cone base.
1273      *  \param theR2 Radius of the second cone base.
1274      *    \note If both radiuses are non-zero, the cone will be truncated.
1275      *    \note If the radiuses are equal, a cylinder will be created instead.
1276      *  \param theH Cone height.
1277      *  \return New GEOM_Object, containing the created cone.
1278      */
1279     GEOM_Object MakeConeR1R2H (in double theR1, in double theR2, in double theH);
1280
1281     /*!
1282      *  \brief Create a cone with given base point, axis, height and radiuses.
1283      *  \param thePnt Central point of the first cone base.
1284      *  \param theAxis Cone axis.
1285      *  \param theR1 Radius of the first cone base.
1286      *  \param theR2 Radius of the second cone base.
1287      *    \note If both radiuses are non-zero, the cone will be truncated.
1288      *    \note If the radiuses are equal, a cylinder will be created instead.
1289      *  \param theH Cone height.
1290      *  \return New GEOM_Object, containing the created cone.
1291      */
1292     GEOM_Object MakeConePntVecR1R2H (in GEOM_Object thePnt,
1293                                      in GEOM_Object theAxis,
1294                                      in double      theR1,
1295                                      in double      theR2,
1296                                      in double      theH);
1297
1298     /*!
1299      *  \brief Create a torus with given radiuses at the origin of coordinate system.
1300      *  \param theRMajor Torus major radius.
1301      *  \param theRMinor Torus minor radius.
1302      *  \return New GEOM_Object, containing the created torus.
1303      */
1304     GEOM_Object MakeTorusRR (in double theRMajor,
1305                              in double theRMinor);
1306
1307     /*!
1308      *  \brief Create a torus with given center, normal vector and radiuses.
1309      *  \param thePnt Torus central point.
1310      *  \param theVec Torus axis of symmetry.
1311      *  \param theRMajor Torus major radius.
1312      *  \param theRMinor Torus minor radius.
1313      *  \return New GEOM_Object, containing the created torus.
1314      */
1315     GEOM_Object MakeTorusPntVecRR (in GEOM_Object thePnt,
1316                                    in GEOM_Object theVec,
1317                                    in double theRMajor,
1318                                    in double theRMinor);
1319
1320     /*!
1321      *  \brief Create a sphere with given radius at the origin of coordinate system.
1322      *  \param theR Sphere radius.
1323      *  \return New GEOM_Object, containing the created sphere.
1324      */
1325     GEOM_Object MakeSphereR (in double theR);
1326
1327     /*!
1328      *  \brief Create a sphere with given center and radius.
1329      *  \param thePnt Sphere center.
1330      *  \param theR Sphere radius.
1331      *  \return New GEOM_Object, containing the created .
1332      */
1333     GEOM_Object MakeSpherePntR (in GEOM_Object thePnt, in double theR);
1334
1335     /*!
1336      *  \brief Create a shape by extrusion of the base shape along the vector
1337      *
1338      *  All the space, transfixed by the base shape during its translation
1339      *  along the vector on the given distance.
1340      *  \param theBase Base shape to be extruded.
1341      *  \param theVec Direction of extrusion.
1342      *  \param theH Prism dimension along theVec.
1343      *  \return New GEOM_Object, containing the created prism.
1344      */
1345     GEOM_Object MakePrismVecH (in GEOM_Object theBase,
1346                                in GEOM_Object theVec,
1347                                in double      theH);
1348     /*  \brief The Same Prism but in 2 directions (forward&backward) */
1349     GEOM_Object MakePrismVecH2Ways (in GEOM_Object theBase,
1350                                     in GEOM_Object theVec,
1351                                     in double      theH);
1352     /*  \brief The Same as MakePrismVecH but with scaling */
1353     GEOM_Object MakePrismVecHWithScaling (in GEOM_Object theBase,
1354                                           in GEOM_Object theVec,
1355                                           in double      theH,
1356                                           in double      theScaleFactor);
1357
1358     /*!
1359      *  \brief Create a shape by extrusion of the base shape along a vector, defined by two points.
1360      *  \param theBase Base shape to be extruded.
1361      *  \param thePoint1 First end of extrusion vector.
1362      *  \param thePoint2 Second end of extrusion vector.
1363      *  \return New GEOM_Object, containing the created prism.
1364      */
1365     GEOM_Object MakePrismTwoPnt (in GEOM_Object theBase,
1366                                  in GEOM_Object thePoint1,
1367                                  in GEOM_Object thePoint2);
1368     /*  \brief The same prism but in two directions forward&backward */
1369     GEOM_Object MakePrismTwoPnt2Ways (in GEOM_Object theBase,
1370                                       in GEOM_Object thePoint1,
1371                                       in GEOM_Object thePoint2);
1372     /*  \brief The Same as MakePrismTwoPnt but with scaling */
1373     GEOM_Object MakePrismTwoPntWithScaling (in GEOM_Object theBase,
1374                                             in GEOM_Object thePoint1,
1375                                             in GEOM_Object thePoint2,
1376                                             in double      theScaleFactor);
1377
1378     /*!
1379      *  \brief Create a shape by extrusion of the base shape along a vector, defined by DX DY DZ.
1380      *  \param theBase Base shape to be extruded.
1381      *  \param theDX, theDY, theDZ end of extrusion vector.
1382      *  \return New GEOM_Object, containing the created prism.
1383      */
1384     GEOM_Object MakePrismDXDYDZ (in GEOM_Object theBase,
1385                                    in double theDX, in double theDY, in double theDZ);
1386     /*  \brief The same prism but in two directions forward&backward */
1387     GEOM_Object MakePrismDXDYDZ2Ways (in GEOM_Object theBase,
1388                                       in double theDX, in double theDY, in double theDZ);
1389     /*  \brief The Same as MakePrismDXDYDZ but with scaling */
1390     GEOM_Object MakePrismDXDYDZWithScaling (in GEOM_Object theBase,
1391                                             in double theDX, in double theDY, in double theDZ,
1392                                             in double theScaleFactor);
1393
1394
1395     /*!
1396      *  \brief Add / Remove material to / from  a solid by extrusion of the base shape on the given distance.
1397      *  \param theInitShape Initial shape on which to perform the feature.It has to be a solid or 
1398      *   a compound made of a single solid
1399      *  \param theBase Edge or wire defining the base shape to be extruded. 
1400      *  \param theHeight Prism dimension along the normal of the face.
1401      *  \param theAngle Draft angel in degrees
1402      *  \param theFuse If true material is added else material is removed
1403      *  \return New GEOM_Object, containing the modified shape
1404      */
1405     GEOM_Object MakeDraftPrism (in GEOM_Object theInitShape,
1406                                 in GEOM_Object theBase,
1407                                 in double theHeight, 
1408                                 in double theAngle,
1409                                 in boolean theFuse);
1410
1411     /*!
1412      *  \brief Create a shape by extrusion of the base shape along
1413      *  the path shape. The path shape can be a wire or an edge.
1414      *  \param theBase Base shape to be extruded.
1415      *  \param thePath Path shape to extrude the base shape along it.
1416      *  \return New GEOM_Object, containing the created pipe.
1417      */
1418     GEOM_Object MakePipe (in GEOM_Object theBase, in GEOM_Object thePath);
1419
1420     /*!
1421      *  \brief Create a shape by revolution of the base shape around the axis
1422      *  on the given angle. 
1423      *
1424      *  All the space, transfixed by the base
1425      *  shape during its rotation around the axis on the given angle.
1426      *  \param theBase Base shape to be rotated.
1427      *  \param theAxis Rotation axis.
1428      *  \param theAngle Rotation angle in radians.
1429      *  \return New GEOM_Object, containing the created revolution.
1430      */
1431     GEOM_Object MakeRevolutionAxisAngle (in GEOM_Object theBase,
1432                                          in GEOM_Object theAxis,
1433                                          in double theAngle);
1434     /*  The Same Revolution but in both ways forward&backward */
1435     GEOM_Object MakeRevolutionAxisAngle2Ways (in GEOM_Object theBase,
1436                                               in GEOM_Object theAxis,
1437                                               in double theAngle);
1438
1439     /*!
1440      *  \brief Create a filling from the given compound of contours.
1441      *  \param theShape Initial shape on which to perform the feature.
1442      *  \param theMinDeg a minimal degree of BSpline surface to create
1443      *  \param theMaxDeg a maximal degree of BSpline surface to create
1444      *  \param theTol2D a 2d tolerance to be reached
1445      *  \param theTol3D a 3d tolerance to be reached
1446      *  \param theNbIter a number of iteration of approximation algorithm
1447      *  \param theMethod Kind of method to perform filling operation.
1448      *  \param theApprox Boolean indicating if result should be approximated
1449      *  \return New GEOM_Object, containing the created filling surface.
1450      */
1451     GEOM_Object MakeFilling (in GEOM_Object theShape,
1452                              in long theMinDeg, in long theMaxDeg,
1453                              in double theTol2D, in double theTol3D,
1454                              in long theNbIter,
1455                              in filling_oper_method theMethod,
1456                              in boolean theApprox);
1457
1458     /*!
1459      *  \brief Create a shell or solid passing through set of sections.Sections should be wires,edges or vertices.
1460      *  \param theSeqSections - set of specified sections.
1461      *  \param theModeSolid - mode defining building solid or shell
1462      *  \param thePreci - precision 3D used for smoothing by default 1.e-6
1463      *  \param theRuled - mode defining type of the result surfaces (ruled or smoothed).
1464      *  \return New GEOM_Object, containing the created shell or solid.
1465      */
1466     GEOM_Object MakeThruSections(in ListOfGO theSeqSections,
1467                                  in boolean theModeSolid,
1468                                  in double thePreci,
1469                                  in boolean theRuled);
1470
1471      /*!
1472      *  \brief Create a shape by extrusion of the profile shape along
1473      *  the path shape. 
1474      *
1475      *  The path shape can be a wire or an edge.
1476      *  the several profiles can be specified in the several locations of path.
1477      *  \param theSeqBases - list of  Bases shape to be extruded.
1478      *  \param theLocations - list of locations on the path corresponding
1479      *                        specified list of the Bases shapes. Number of locations
1480      *                        should be equal to number of bases or list of locations can be empty.
1481      *  \param thePath - Path shape to extrude the base shape along it.
1482      *  \param theWithContact - the mode defining that the section is translated to be in
1483      *                          contact with the spine.
1484      *  \param theWithCorrection - defining that the section is rotated to be
1485      *                                 orthogonal to the spine tangent in the correspondent point
1486      *  \return New GEOM_Object, containing the created pipe.
1487      */
1488     GEOM_Object MakePipeWithDifferentSections (in ListOfGO theSeqBases,
1489                                                in ListOfGO theLocations,
1490                                                in GEOM_Object thePath,
1491                                                in boolean theWithContact ,
1492                                                in boolean theWithCorrection );
1493
1494     /*!
1495      *  \brief Create a shape by extrusion of the profile shape along
1496      *  the path shape. 
1497      *
1498      *  The path shape can be a shell or a face.
1499      *  the several profiles can be specified in the several locations of path.
1500      *  \param theSeqBases - list of  Bases shape to be extruded.
1501      *  \param theSeqSubBases - list of corresponding sub-shapes of section shapes.
1502      *  \param theLocations - list of locations on the path corresponding
1503      *                        specified list of the Bases shapes. Number of locations
1504      *                        should be equal to number of bases.
1505      *  \param thePath - Path shape to extrude the base shape along it.
1506      *  \param theWithContact - the mode defining that the section is translated to be in
1507      *                          contact with the spine.
1508      *  \param theWithCorrection - defining that the section is rotated to be
1509      *                                 orthogonal to the spine tangent in the correspondent point
1510      *  \return New GEOM_Object, containing the created pipe.
1511      */
1512     GEOM_Object MakePipeWithShellSections (in ListOfGO theSeqBases,
1513                                            in ListOfGO theSeqSubBases,
1514                                            in ListOfGO theLocations,
1515                                            in GEOM_Object thePath,
1516                                            in boolean theWithContact ,
1517                                            in boolean theWithCorrection );
1518
1519     /*!
1520      *  \brief Create solids between given sections
1521      *  \param theSeqBases - list of sections (shell or face).
1522      *  \param theLocations - list of corresponding vertexes
1523      *  \return New GEOM_Object, containing the created solids.
1524      */
1525     GEOM_Object MakePipeShellsWithoutPath (in ListOfGO theSeqBases,
1526                                            in ListOfGO theLocations);
1527
1528     /*!
1529      *  \brief Create a shape by extrusion of the base shape along
1530      *  the path shape with constant bi-normal direction along the given vector.
1531      *
1532      *  The path shape can be a wire or an edge.
1533      *  \param theBase Base shape to be extruded.
1534      *  \param thePath Path shape to extrude the base shape along it.
1535      *  \param theVec Vector defines a constant binormal direction to keep the
1536      *                same angle beetween the Direction and the sections
1537      *                along the sweep surface.
1538      *  \return New GEOM_Object, containing the created pipe.
1539      */
1540     GEOM_Object MakePipeBiNormalAlongVector (in GEOM_Object theBase,
1541                                              in GEOM_Object thePath,
1542                                              in GEOM_Object theVec);
1543
1544
1545      /*!
1546      *  \brief Make a thick solid from a surface shape (face or shell)
1547      *  \param theObject Surface from which the thick solid is made
1548      *  \param theThickness Value of the thickness
1549      *  \return New GEOM_Object, containing the created pipe if isCopy = true
1550      *          or the modified object if isCopy = false
1551      */
1552     GEOM_Object MakeThickening (in GEOM_Object theObject,
1553                                 in double theThickness,
1554                                 in boolean isCopy);
1555
1556     
1557     /*!
1558      *  \brief Build a middle path of a pipe-like shape.
1559      *
1560      *  The path shape can be a wire or an edge.
1561      *  \param theShape It can be closed or unclosed pipe-like shell
1562      *                  or a pipe-like solid.
1563      *  \param theBase1, theBase2 Two bases of the supposed pipe. This
1564      *                            should be wires or faces of \a theShape.
1565      *  \note It is not assumed that exact or approximate copy of \a theShape
1566      *        can be obtained by applying existing Pipe operation on the
1567      *        resulting "Path" wire taking \a theBase1 as the base - it is not
1568      *        always possible; though in some particular cases it might work
1569      *        it is not guaranteed. Thus, RestorePath function should not be
1570      *        considered as an exact reverse operation of the Pipe.
1571      *  \return New GEOM_Object, containing an edge or wire that represent
1572      *                           source pipe's "path".
1573      */
1574     GEOM_Object RestorePath (in GEOM_Object theShape,
1575                              in GEOM_Object theBase1,
1576                              in GEOM_Object theBase2);
1577
1578     /*!
1579      *  \brief Build a middle path of a pipe-like shape.
1580      *
1581      *  The path shape can be a wire or an edge.
1582      *  \param theShape It can be closed or unclosed pipe-like shell
1583      *                  or a pipe-like solid.
1584      *  \param theBase1, theBase2 Two bases of the supposed pipe. This
1585      *                            should be lists of edges of \a theShape.
1586      *  \note It is not assumed that exact or approximate copy of \a theShape
1587      *        can be obtained by applying existing Pipe operation on the
1588      *        resulting "Path" wire taking \a theBase1 as the base - it is not
1589      *        always possible; though in some particular cases it might work
1590      *        it is not guaranteed. Thus, RestorePath function should not be
1591      *        considered as an exact reverse operation of the Pipe.
1592      *  \return New GEOM_Object, containing an edge or wire that represent
1593      *                           source pipe's "path".
1594      */
1595     GEOM_Object RestorePathEdges (in GEOM_Object theShape,
1596                                   in ListOfGO theBase1,
1597                                   in ListOfGO theBase2);
1598   };
1599
1600   /*!
1601    *  \brief Interface for Shapes creation:
1602    *
1603    *  Edge from two points, Wire from edges, Face from wire,
1604    *  Shell from faces, Solid from shells, Compound from shapes
1605    */
1606   interface GEOM_IShapesOperations : GEOM_IOperations
1607   {
1608     /*!
1609      *  \brief Create a linear edge with specified ends.
1610      *  \param thePnt1 Point for the first end of edge.
1611      *  \param thePnt2 Point for the second end of edge.
1612      *  \return New GEOM_Object, containing the created edge.
1613      */
1614     GEOM_Object MakeEdge (in GEOM_Object thePnt1, in GEOM_Object thePnt2);
1615
1616     /*!
1617      *  \brief Create an edge on another edge, corresponding to the given length on the given edge.
1618      *  \param theRefCurve The referenced edge.
1619      *  \param theLength Length on the referenced edge. It can be
1620      *                   negative for extrapolation on base curve.
1621      *  \param theStartPoint Any vertex close to one of edge's
1622      *                       ends to select start point among them.
1623      *                       If NULL, fist vertex is used.
1624      *  \return New GEOM_Object, containing the created edge.
1625      */
1626     GEOM_Object MakeEdgeOnCurveByLength (in GEOM_Object theRefCurve,
1627                                          in double      theLength,
1628                                          in GEOM_Object theStartPoint);
1629
1630     /*!
1631      *  \brief Create an edge from specified wire.
1632      *  \param theWire source Wire.
1633      *  \param theLinearTolerance linear tolerance value
1634      *  \param theAngularTolerance angular tolerance value
1635      *  \return New GEOM_Object, containing the created edge.
1636      */
1637     GEOM_Object MakeEdgeWire (in GEOM_Object theWire,
1638                               in double theLinearTolerance,
1639                               in double theAngularTolerance);
1640
1641     /*!
1642      *  \brief Create a wire from the set of edges and wires.
1643      *  \param theEdgesAndWires List of edge and/or wires.
1644      *  \param theTolerance Maximum distance between vertices, that will be merged.
1645      *                      Values less than 1e-07 are equivalent to 1e-07 (Precision::Confusion()).
1646      *  \return New GEOM_Object, containing the created wire.
1647      */
1648     GEOM_Object MakeWire (in ListOfGO theEdgesAndWires,
1649                           in double   theTolerance);
1650
1651     /*!
1652      *  \brief Create a face on the given wire.
1653      *  \param theWire closed Wire or Edge to build the face on.
1654      *  \param isPlanarWanted If TRUE, only planar face will be built.
1655      *                        If impossible, NULL object will be returned.
1656      *  \return New GEOM_Object, containing the created face.
1657      */
1658     GEOM_Object MakeFace (in GEOM_Object theWire, in boolean isPlanarWanted);
1659
1660     /*!
1661      *  \brief Create a face on the given wires set.
1662      *  \param theWires List of closed wires or edges to build the face on.
1663      *  \param isPlanarWanted If TRUE, only planar face will be built.
1664      *                        If impossible, NULL object will be returned.
1665      *  \return New GEOM_Object, containing the created face.
1666      */
1667     GEOM_Object MakeFaceWires (in ListOfGO theWires, in boolean isPlanarWanted);
1668
1669     /*!
1670      *  \brief Create a shell from the set of faces and shells.
1671      *  \param theFacesAndShells List of faces and/or shells.
1672      *  \return New GEOM_Object, containing the created shell.
1673      */
1674     GEOM_Object MakeShell (in ListOfGO theFacesAndShells);
1675
1676     /*!
1677      *  \brief Create a solid, bounded by the given shell.
1678      *  \param theShell Bounding shell.
1679      *  \return New GEOM_Object, containing the created solid.
1680      */
1681     GEOM_Object MakeSolidShell (in GEOM_Object theShell);
1682
1683     /*!
1684      *  \brief Create a solid, bounded by the given shells.
1685      *  \param theShells Bounding shells.
1686      *  \return New GEOM_Object, containing the created solid.
1687      */
1688     GEOM_Object MakeSolidShells (in ListOfGO theShells);
1689
1690     /*!
1691      *  \brief Create a compound of the given shapes.
1692      *  \param theShapes List of shapes to put in compound.
1693      *  \return New GEOM_Object, containing the created compound.
1694      */
1695     GEOM_Object MakeCompound (in ListOfGO theShapes);
1696
1697     /*!
1698      *  \brief Replace coincident faces in theShape by one face.
1699      *  \param theShape Initial shape.
1700      *  \param theTolerance Maximum distance between faces, which can be considered as coincident.
1701      *  \param doKeepNonSolids If FALSE, only solids will present in the result, otherwise all initial shapes.
1702      *  \return New GEOM_Object, containing a copy of theShape without coincident faces.
1703      */
1704     GEOM_Object MakeGlueFaces (in GEOM_Object theShape, in double theTolerance, in boolean doKeepNonSolids);
1705
1706     /*!
1707      *  Find coincident faces in theShape for possible gluing.
1708      *  \param theShape Initial shape.
1709      *  \param theTolerance Maximum distance between faces, which can be considered as coincident.
1710      *  \return ListOfGO
1711      */
1712     ListOfGO GetGlueFaces (in GEOM_Object theShape, in double theTolerance);
1713
1714     /*!
1715      *  \brief Replace coincident faces in theShape by one face
1716      *  in compliance with given list of faces
1717      *  \param theShape Initial shape.
1718      *  \param theTolerance Maximum distance between faces, which can be considered as coincident.
1719      *  \param theFaces List of faces for gluing.
1720      *  \param doKeepNonSolids If FALSE, only solids will present in the result, otherwise all initial shapes.
1721      *  \param doGlueAllEdges If TRUE, all coincident edges of <VAR>theShape</VAR>
1722      *                        will be glued, otherwise only the edges,
1723      *                        belonging to <VAR>theFaces</VAR>.
1724      *  \return New GEOM_Object, containing a copy of theShape without some faces.
1725      */
1726     GEOM_Object MakeGlueFacesByList (in GEOM_Object theShape, in double theTolerance,
1727                                      in ListOfGO theFaces, in boolean doKeepNonSolids,
1728                                      in boolean doGlueAllEdges);
1729
1730     /*!
1731      *  \brief Replace coincident edges in theShape by one edge.
1732      *  \param theShape Initial shape.
1733      *  \param theTolerance Maximum distance between edges, which can be considered as coincident.
1734      *  \return New GEOM_Object, containing a copy of theShape without coincident edges.
1735      */
1736     GEOM_Object MakeGlueEdges (in GEOM_Object theShape, in double theTolerance);
1737
1738     /*!
1739      *  Find coincident edges in theShape for possible gluing.
1740      *  \param theShape Initial shape.
1741      *  \param theTolerance Maximum distance between edges, which can be considered as coincident.
1742      *  \return ListOfGO
1743      */
1744     ListOfGO GetGlueEdges (in GEOM_Object theShape, in double theTolerance);
1745
1746     /*!
1747      *  \brief Replace coincident edges in theShape by one edge
1748      *  in compliance with given list of edges
1749      *  \param theShape Initial shape.
1750      *  \param theTolerance Maximum distance between edges, which can be considered as coincident.
1751      *  \param theEdges List of edges for gluing.
1752      *  \return New GEOM_Object, containing a copy of theShape without some edges.
1753      */
1754     GEOM_Object MakeGlueEdgesByList (in GEOM_Object theShape,
1755                                      in double theTolerance,
1756                                      in ListOfGO theEdges);
1757
1758     /*!
1759      *  \brief Get all sub-shapes and groups of \a theShape,
1760      *  that were created already by any other methods.
1761      *  \param theShape Any shape.
1762      *  \param theGroupsOnly If this parameter is TRUE, only groups will be
1763      *                       returned, else all found sub-shapes and groups.
1764      *  \return List of existing sub-objects of \a theShape.
1765      */
1766     ListOfGO GetExistingSubObjects (in GEOM_Object theShape,
1767                                     in boolean     theGroupsOnly);
1768
1769     /*!
1770      *  \brief Deprecated method. 
1771      *
1772      *  Use MakeAllSubShapes() instead.
1773      */
1774     ListOfGO MakeExplode (in GEOM_Object theShape,
1775                           in long        theShapeType,
1776                           in boolean     isSorted);
1777
1778     /*!
1779      *  \brief Explode a shape on sub-shapes of a given type. 
1780      *
1781      *  If the shape itself has the given type, it is also returned.
1782      *  \param theShape Shape to be exploded.
1783      *  \param theShapeType Type of sub-shapes to be retrieved.
1784      *  \param isSorted If this parameter is TRUE, sub-shapes will be
1785      *                  sorted by coordinates of their gravity centers.
1786      *  \return List of sub-shapes of type theShapeType, contained in theShape.
1787      */
1788     ListOfGO MakeAllSubShapes (in GEOM_Object theShape,
1789                                in long        theShapeType,
1790                                in boolean     isSorted);
1791
1792     /*!
1793      *  \brief Extract all sub-shapes of the given type from
1794      *  the given shape, excluding the shape itself.
1795      *  \param theShape Shape to be exploded.
1796      *  \param theShapeType Type of sub-shapes to be retrieved.
1797      *  \param isSorted If this parameter is TRUE, sub-shapes will be
1798      *                  sorted by coordinates of their gravity centers.
1799      *  \return List of sub-shapes of type theShapeType, contained in theShape.
1800      */
1801     ListOfGO ExtractSubShapes (in GEOM_Object theShape,
1802                                in long        theShapeType,
1803                                in boolean     isSorted);
1804
1805     /*!
1806      *  \brief Deprecated method. Use GetAllSubShapesIDs() instead.
1807      */
1808     ListOfLong SubShapeAllIDs (in GEOM_Object theShape,
1809                                in long        theShapeType,
1810                                in boolean     isSorted);
1811
1812     /*!
1813      *  \brief Explode a shape on sub-shapes of a given type.
1814      *
1815      *  Does the same, as MakeAllSubShapes, but returns IDs of
1816      *  sub-shapes, not GEOM_Object. It works faster.
1817      *  \param theShape Shape to be exploded.
1818      *  \param theShapeType Type of sub-shapes to be retrieved.
1819      *  \param isSorted If this parameter is TRUE, sub-shapes will be
1820      *                  sorted by coordinates of their gravity centers.
1821      *  \return List of IDs of sub-shapes of type theShapeType, contained in theShape.
1822      */
1823     ListOfLong GetAllSubShapesIDs (in GEOM_Object theShape,
1824                                    in long        theShapeType,
1825                                    in boolean     isSorted);
1826
1827     /*!
1828      *  \brief Get a sub-shape defined by its unique ID inside \a theMainShape
1829      *  \param theMainShape Main shape.
1830      *  \param theID Unique ID of sub-shape inside \a theMainShape.
1831      *  \return GEOM_Object, corresponding to found sub-shape.
1832      *  \note The sub-shape GEOM_Object can has ONLY ONE function.
1833      *        Don't try to apply modification operations (without copy) on them.
1834      */
1835     GEOM_Object GetSubShape (in GEOM_Object theMainShape,
1836                              in long        theID);
1837
1838     /*!
1839      *  \brief Get a set of sub-shapes defined by their unique IDs inside \a theMainShape
1840      *  \param theMainShape Main shape.
1841      *  \param theIndices List of unique IDs of sub-shapes inside \a theMainShape.
1842      *  \return List of GEOM_Object, corresponding to found sub-shapes.
1843      *  \note The sub-shape GEOM_Object can has ONLY ONE function.
1844      *        Don't try to apply modification operations (without copy) on them.
1845      */
1846     ListOfGO MakeSubShapes (in GEOM_Object theMainShape,
1847                             in ListOfLong  theIndices);
1848
1849     /*!
1850      *  Get global index of \a theSubShape in \a theMainShape.
1851      *  \param theMainShape Main shape.
1852      *  \param theSubShape Sub-shape of the main shape.
1853      *  \return global index of \a theSubShape in \a theMainShape.
1854      */
1855     long GetSubShapeIndex (in GEOM_Object theMainShape, in GEOM_Object theSubShape);
1856
1857     /*!
1858      *  Get global indices of \a theSubShapes in \a theMainShape.
1859      *  \param theMainShape Main shape.
1860      *  \param theSubShapes List of sub-shapes of the main shape.
1861      *  \return list of global indices of \a theSubShapes in \a theMainShape.
1862      */
1863     ListOfLong GetSubShapesIndices (in GEOM_Object theMainShape, in ListOfGO theSubShapes);
1864
1865     /*!
1866      *  \brief Get index of \a theSubShape in \a theMainShape, unique among sub-shapes of the same type.
1867      *
1868      *  Together with method <VAR>GetShapeTypeString()</VAR> it can be used
1869      *  to generate automatic names for sub-shapes, when publishing them in a study.
1870      *  \param theMainShape Main shape.
1871      *  \param theSubShape Sub-shape of the main shape.
1872      *  \return index of \a theSubShape in a list of all sub-shapes of \a theMainShape of the same type.
1873      */
1874     long GetTopologyIndex (in GEOM_Object theMainShape, in GEOM_Object theSubShape);
1875
1876     /*!
1877      *  \brief Get name of type of \a theShape.
1878      *
1879      *  Use wide type notation, taking into consideration both topology and geometry of the shape.
1880      *  Together with method <VAR>GetTopologyIndex()</VAR> it can be used
1881      *  to generate automatic names for sub-shapes, when publishing them in a study.
1882      *  \param theShape The shape to get a type of.
1883      *  \return String, containing a type name of \a theShape.
1884      */
1885     string GetShapeTypeString (in GEOM_Object theShape);
1886
1887     /*!
1888      *  \brief Count number of faces in the given shape.
1889      *  \param theShape Shape to count faces in.
1890      *  \return Number of faces in the given shape.
1891      */
1892     long NumberOfFaces (in GEOM_Object theShape);
1893
1894     /*!
1895      *  \brief Count number of edges in the given shape.
1896      *  \param theShape Shape to count edges in.
1897      *  \return Number of edges in theShape.
1898      */
1899     long NumberOfEdges (in GEOM_Object theShape);
1900
1901     /*!
1902      *  \brief Count number of sub-shapes of type \a theShapeType in the given shape.
1903      *  \param theShape Shape to count sub-shapes in.
1904      *  \param theShapeType The type of sub-shapes to count.
1905      *  \return Number of sub-shapes of type \a theShapeType in \a theShape.
1906      */
1907     long NumberOfSubShapes (in GEOM_Object theShape,
1908                             in long        theShapeType);
1909
1910     /*!
1911      *  Reverses an orientation the given shape.
1912      *  \param theShape Shape to be reversed.
1913      *  \return The reversed copy of theShape.
1914      */
1915     GEOM_Object ChangeOrientation (in GEOM_Object theShape);
1916
1917     /*!
1918      *  \brief Retrieve all free faces from the given shape.
1919      *
1920      *  Free face is a face, which is not shared between two shells of the shape.
1921      *  \param theShape Shape to find free faces in.
1922      *  \return List of IDs of all free faces, contained in theShape.
1923      */
1924     ListOfLong GetFreeFacesIDs (in GEOM_Object theShape);
1925
1926     /*!
1927      *  \brief Get all sub-shapes of theShape1 of the given type, shared with theShape2.
1928      *  \param theShape1 Shape to find sub-shapes in.
1929      *  \param theShape2 Shape to find shared sub-shapes with.
1930      *  \param theShapeType Type of sub-shapes to be retrieved.
1931      *  \return List of sub-shapes of theShape1, shared with theShape2.
1932      */
1933     ListOfGO GetSharedShapes (in GEOM_Object theShape1,
1934                               in GEOM_Object theShape2,
1935                               in long        theShapeType);
1936
1937     /*!
1938      *  \brief Get all sub-shapes, shared by all shapes in the list \a theShapes.
1939      *  \param theShapes Shapes to find common sub-shapes of.
1940      *  \param theShapeType Type of sub-shapes to be retrieved.
1941      *  \return List of objects, that are sub-shapes of all given shapes.
1942      */
1943     ListOfGO GetSharedShapesMulti (in ListOfGO theShapes,
1944                                    in long     theShapeType);
1945
1946     /*!
1947      *  \brief Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
1948      *  the specified plane by the certain way, defined through \a theState parameter.
1949      *  \param theShape Shape to find sub-shapes of.
1950      *  \param theShapeType Type of sub-shapes to be retrieved.
1951      *  \param theAx1 Vector (or line, or linear edge), specifying normal
1952      *                direction and location of the plane to find shapes on.
1953      *  \param theState The state of the sub-shapes to find.
1954      *  \return List of all found sub-shapes.
1955      */
1956     ListOfGO GetShapesOnPlane (in GEOM_Object theShape,
1957                                in long        theShapeType,
1958                                in GEOM_Object theAx1,
1959                                in shape_state theState);
1960     /*!
1961      *  \brief Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
1962      *  the specified plane by the certain way, defined through \a theState parameter.
1963      *  \param theShape Shape to find sub-shapes of.
1964      *  \param theShapeType Type of sub-shapes to be retrieved.
1965      *  \param theAx1 Vector (or line, or linear edge), specifying normal
1966      *                direction of the plane to find shapes on.
1967      *  \param thePnt Point specifying location of the plane to find shapes on.
1968      *  \param theState The state of the sub-shapes to find.
1969      *  \return List of all found sub-shapes.
1970      */
1971     ListOfGO GetShapesOnPlaneWithLocation (in GEOM_Object theShape,
1972                                            in long        theShapeType,
1973                                            in GEOM_Object theAx1,
1974                                            in GEOM_Object thePnt,
1975                                            in shape_state theState);
1976
1977
1978
1979     /*!
1980      *  \brief Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
1981      *  the specified cylinder by the certain way, defined through \a theState parameter.
1982      *  \param theShape Shape to find sub-shapes of.
1983      *  \param theShapeType Type of sub-shapes to be retrieved.
1984      *  \param theAxis Vector (or line, or linear edge), specifying
1985      *                 axis of the cylinder to find shapes on.
1986      *  \param theRadius Radius of the cylinder to find shapes on.
1987      *  \param theState The state of the sub-shapes to find.
1988      *  \return List of all found sub-shapes.
1989      */
1990     ListOfGO GetShapesOnCylinder (in GEOM_Object theShape,
1991                                   in long        theShapeType,
1992                                   in GEOM_Object theAxis,
1993                                   in double      theRadius,
1994                                   in shape_state theState);
1995
1996     /*!
1997      *  \brief Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
1998      *  the specified cylinder by the certain way, defined through \a theState parameter.
1999      *  \param theShape Shape to find sub-shapes of.
2000      *  \param theShapeType Type of sub-shapes to be retrieved.
2001      *  \param theAxis Vector (or line, or linear edge), specifying
2002      *                 axis of the cylinder to find shapes on.
2003      *  \param thePnt Point specifying location of the bottom of the cylinder.
2004      *  \param theRadius Radius of the cylinder to find shapes on.
2005      *  \param theState The state of the sub-shapes to find.
2006      *  \return List of all found sub-shapes.
2007      */
2008     ListOfGO GetShapesOnCylinderWithLocation (in GEOM_Object theShape,
2009                                               in long        theShapeType,
2010                                               in GEOM_Object theAxis,
2011                                               in GEOM_Object thePnt,
2012                                               in double      theRadius,
2013                                               in shape_state theState);
2014
2015     /*!
2016      *  \brief Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
2017      *  the specified sphere by the certain way, defined through \a theState parameter.
2018      *  \param theShape Shape to find sub-shapes of.
2019      *  \param theShapeType Type of sub-shapes to be retrieved.
2020      *  \param theCenter Point, specifying center of the sphere to find shapes on.
2021      *  \param theRadius Radius of the sphere to find shapes on.
2022      *  \param theState The state of the sub-shapes to find.
2023      *  \return List of all found sub-shapes.
2024      */
2025     ListOfGO GetShapesOnSphere (in GEOM_Object theShape,
2026                                 in long        theShapeType,
2027                                 in GEOM_Object theCenter,
2028                                 in double      theRadius,
2029                                 in shape_state theState);
2030
2031     /*!
2032      *  \brief Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
2033      *  the specified quadrangle by the certain way, defined through \a theState parameter.
2034      *  \param theShape Shape to find sub-shapes of.
2035      *  \param theShapeType Type of sub-shapes to be retrieved.
2036      *  \param theTopLeftPoint Top left quadrangle corner
2037      *  \param theTopRigthPoint Top right quadrangle corner
2038      *  \param theBottomLeftPoint Bottom left quadrangle corner
2039      *  \param theBottomRigthPoint Bottom right quadrangle corner
2040      *  \param theState The state of the sub-shapes to find.
2041      *  \return List of all found sub-shapes.
2042      */
2043     ListOfGO GetShapesOnQuadrangle (in GEOM_Object theShape,
2044                                     in long        theShapeType,
2045                                     in GEOM_Object theTopLeftPoint,
2046                                     in GEOM_Object theTopRigthPoint,
2047                                     in GEOM_Object theBottomLeftPoint,
2048                                     in GEOM_Object theBottomRigthPoint,
2049                                     in shape_state theState);
2050
2051     /*!
2052      *  \brief Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
2053      *  the specified plane by the certain way, defined through \a theState parameter.
2054      *  \param theShape Shape to find sub-shapes of.
2055      *  \param theShapeType Type of sub-shapes to be retrieved.
2056      *  \param theAx1 Vector (or line, or linear edge), specifying normal
2057      *                direction and location of the plane to find shapes on.
2058      *  \param theState The state of the sub-shapes to find.
2059      *  \return List of IDs of all found sub-shapes.
2060      */
2061     ListOfLong GetShapesOnPlaneIDs (in GEOM_Object theShape,
2062                                     in long        theShapeType,
2063                                     in GEOM_Object theAx1,
2064                                     in shape_state theState);
2065
2066     /*!
2067      *  \brief Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
2068      *  the specified plane by the certain way, defined through \a theState parameter.
2069      *  \param theShape Shape to find sub-shapes of.
2070      *  \param theShapeType Type of sub-shapes to be retrieved.
2071      *  \param theAx1 Vector (or line, or linear edge), specifying normal
2072      *                direction of the plane to find shapes on.
2073      *  \param thePnt Point specifying location of the plane to find shapes on.
2074      *  \param theState The state of the sub-shapes to find.
2075      *  \return List of IDs of all found sub-shapes.
2076      */
2077     ListOfLong GetShapesOnPlaneWithLocationIDs (in GEOM_Object theShape,
2078                                                 in long        theShapeType,
2079                                                 in GEOM_Object theAx1,
2080                                                 in GEOM_Object thePnt,
2081                                                 in shape_state theState);
2082
2083     /*!
2084      *  \brief Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
2085      *  the specified cylinder by the certain way, defined through \a theState parameter.
2086      *  \param theShape Shape to find sub-shapes of.
2087      *  \param theShapeType Type of sub-shapes to be retrieved.
2088      *  \param theAxis Vector (or line, or linear edge), specifying
2089      *                 axis of the cylinder to find shapes on.
2090      *  \param theRadius Radius of the cylinder to find shapes on.
2091      *  \param theState The state of the sub-shapes to find.
2092      *  \return List of IDs of all found sub-shapes.
2093      */
2094     ListOfLong GetShapesOnCylinderIDs (in GEOM_Object theShape,
2095                                        in long        theShapeType,
2096                                        in GEOM_Object theAxis,
2097                                        in double      theRadius,
2098                                        in shape_state theState);
2099
2100     /*!
2101      *  \brief Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
2102      *  the specified cylinder by the certain way, defined through \a theState parameter.
2103      *  \param theShape Shape to find sub-shapes of.
2104      *  \param theShapeType Type of sub-shapes to be retrieved.
2105      *  \param theAxis Vector (or line, or linear edge), specifying
2106      *                 axis of the cylinder to find shapes on.
2107      *  \param thePnt Point specifying location of the bottom of the cylinder.
2108      *  \param theRadius Radius of the cylinder to find shapes on.
2109      *  \param theState The state of the sub-shapes to find.
2110      *  \return List of IDs all found sub-shapes.
2111      */
2112     ListOfLong GetShapesOnCylinderWithLocationIDs (in GEOM_Object theShape,
2113                                                    in long        theShapeType,
2114                                                    in GEOM_Object theAxis,
2115                                                    in GEOM_Object thePnt,
2116                                                    in double      theRadius,
2117                                                    in shape_state theState);
2118
2119     /*!
2120      *  \brief Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
2121      *  the specified sphere by the certain way, defined through \a theState parameter.
2122      *  \param theShape Shape to find sub-shapes of.
2123      *  \param theShapeType Type of sub-shapes to be retrieved.
2124      *  \param theCenter Point, specifying center of the sphere to find shapes on.
2125      *  \param theRadius Radius of the sphere to find shapes on.
2126      *  \param theState The state of the sub-shapes to find.
2127      *  \return List of IDs of all found sub-shapes.
2128      */
2129     ListOfLong GetShapesOnSphereIDs (in GEOM_Object theShape,
2130                                      in long        theShapeType,
2131                                      in GEOM_Object theCenter,
2132                                      in double      theRadius,
2133                                      in shape_state theState);
2134
2135     /*!
2136      *  \brief Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
2137      *  the specified quadrangle by the certain way, defined through \a theState parameter.
2138      *  \param theShape Shape to find sub-shapes of.
2139      *  \param theShapeType Type of sub-shapes to be retrieved.
2140      *  \param theTopLeftPoint Top left quadrangle corner
2141      *  \param theTopRigthPoint Top right quadrangle corner
2142      *  \param theBottomLeftPoint Bottom left quadrangle corner
2143      *  \param theBottomRigthPoint Bottom right quadrangle corner
2144      *  \param theState The state of the sub-shapes to find.
2145      *  \return List of IDs of all found sub-shapes.
2146      */
2147     ListOfLong GetShapesOnQuadrangleIDs (in GEOM_Object theShape,
2148                                          in long        theShapeType,
2149                                          in GEOM_Object theTopLeftPoint,
2150                                          in GEOM_Object theTopRigthPoint,
2151                                          in GEOM_Object theBottomLeftPoint,
2152                                          in GEOM_Object theBottomRigthPoint,
2153                                          in shape_state theState);
2154
2155     /*!
2156      * \brief Find sub-shapes complying with given status
2157      * \param theBox - the box to check state of sub-shapes against
2158      * \param theShape - the shape to explore
2159      * \param theShapeType - type of sub-shape of theShape
2160      * \param theState - required state
2161      * \return List of IDs of all found sub-shapes.
2162      */
2163     ListOfLong GetShapesOnBoxIDs (in GEOM_Object theBox,
2164                                   in GEOM_Object theShape,
2165                                   in long        theShapeType,
2166                                   in shape_state theState);
2167
2168     /*!
2169      * \brief Find sub-shapes complying with given status
2170      * \param theBox - the box to check state of sub-shapes against
2171      * \param theShape - the shape to explore
2172      * \param theShapeType - type of sub-shape of theShape
2173      * \param theState - required state
2174      * \return List of all found sub-shapes.
2175      */
2176     ListOfGO GetShapesOnBox (in GEOM_Object theBox,
2177                              in GEOM_Object theShape,
2178                              in long        theShapeType,
2179                              in shape_state theState);
2180
2181     /*!
2182      * \brief Find sub-shapes complying with given status
2183      * \param theCheckShape - the shape to check state of sub-shapes against. It must be a solid.
2184      * \param theShape - the shape to explore
2185      * \param theShapeType - type of sub-shape of theShape
2186      * \param theState - required state
2187      * \return List of IDs of all found sub-shapes.
2188      */
2189     ListOfLong GetShapesOnShapeIDs (in GEOM_Object theCheckShape,
2190                                     in GEOM_Object theShape,
2191                                     in short       theShapeType,
2192                                     in shape_state theState);
2193
2194     /*!
2195      * \brief Find sub-shapes complying with given status
2196      * \param theCheckShape - the shape to check state of sub-shapes against. It must be a solid.
2197      * \param theShape - the shape to explore
2198      * \param theShapeType - type of sub-shape of theShape
2199      * \param theState - required state
2200      * \return List of all found sub-shapes.
2201      */
2202     ListOfGO GetShapesOnShape (in GEOM_Object theCheckShape,
2203                                in GEOM_Object theShape,
2204                                in short       theShapeType,
2205                                in shape_state theState);
2206
2207     /*!
2208      * \brief Find sub-shapes complying with given status
2209      * \param theCheckShape - the shape to check state of sub-shapes against. It must be a solid.
2210      * \param theShape - the shape to explore
2211      * \param theShapeType - type of sub-shape of theShape
2212      * \param theState - required state
2213      * \return compound includes all found sub-shapes.
2214      */
2215     GEOM_Object GetShapesOnShapeAsCompound (in GEOM_Object theCheckShape,
2216                                             in GEOM_Object theShape,
2217                                             in short       theShapeType,
2218                                             in shape_state theState);
2219
2220     /*!
2221      *  \brief Get sub-shape(s) of \a theShapeWhere, which are
2222      *  coincident with \a theShapeWhat or could be a part of it.
2223      *  \param theShapeWhere Shape to find sub-shapes of.
2224      *  \param theShapeWhat Shape, specifying what to find.
2225      *  \return Group of all found sub-shapes or a single found sub-shape.
2226      */
2227     GEOM_Object GetInPlace (in GEOM_Object theShapeWhere,
2228                             in GEOM_Object theShapeWhat);
2229
2230     /*!
2231      *  Old implementation of GetInPlace functionality, based on shape properties.
2232      */
2233     GEOM_Object GetInPlaceOld (in GEOM_Object theShapeWhere,
2234                                in GEOM_Object theShapeWhat);
2235
2236     /*!
2237      *  \brief Get sub-shape(s) of \a theShapeWhere, which are
2238      *  coincident with \a theShapeWhat or could be a part of it.
2239      *
2240      *  Implementation of this method is based on a saved history of an operation,
2241      *  produced \a theShapeWhere. The \a theShapeWhat must be among this operation's
2242      *  arguments (an argument shape or a sub-shape of an argument shape).
2243      *  The operation could be the Partition or one of boolean operations,
2244      *  performed on simple shapes (not on compounds).
2245      *
2246      *  \param theShapeWhere Shape to find sub-shapes of.
2247      *  \param theShapeWhat Shape, specifying what to find.
2248      *  \return Group of all found sub-shapes or a single found sub-shape.
2249      */
2250     GEOM_Object GetInPlaceByHistory (in GEOM_Object theShapeWhere,
2251                                      in GEOM_Object theShapeWhat);
2252
2253     /*!
2254      *  \brief Get sub-shape of theShapeWhere, which are
2255      *  coincident with \a theShapeWhat that can either SOLID, FACE, EDGE or VERTEX.
2256      *  \param theShapeWhere Shape to find sub-shapes of.
2257      *  \param theShapeWhat Shape, specifying what to find.
2258      *  \return found sub-shape.
2259      */
2260     GEOM_Object GetSame (in GEOM_Object theShapeWhere,
2261                                 in GEOM_Object theShapeWhat);
2262
2263     /*!
2264      *  \brief Get sub-shape Ids of theShapeWhere, which are
2265      *   coincident with \a theShapeWhat that can either SOLID, FACE, EDGE or VERTEX.
2266      *  \param theShapeWhere Shape to find sub-shapes of.
2267      *  \param theShapeWhat Shape, specifying what to find.
2268      *  \return found sub-shape Ids.
2269      */
2270     ListOfLong GetSameIDs (in GEOM_Object theShapeWhere,
2271                            in GEOM_Object theShapeWhat);
2272
2273   };
2274
2275  // # GEOM_IBlocksOperations: 
2276   /*!
2277    *  \brief Interface for Blocks construction
2278    *  Face from points or edges, Block from faces,
2279    *  Blocks multi-translation and multi-rotation
2280    */
2281   interface GEOM_IBlocksOperations : GEOM_IOperations
2282   {
2283    
2284   //  # Creation of blocks
2285
2286     /*!
2287      *  \brief Create a quadrangle face from four edges. Order of Edges is not
2288      *  important. It is  not necessary that edges share the same vertex.
2289      *  \param theEdge1,theEdge2,theEdge3,theEdge4 Edges for the face bound.
2290      *  \return New GEOM_Object, containing the created face.
2291      */
2292     GEOM_Object MakeQuad (in GEOM_Object theEdge1,
2293                           in GEOM_Object theEdge2,
2294                           in GEOM_Object theEdge3,
2295                           in GEOM_Object theEdge4);
2296
2297     /*!
2298      *  \brief Create a quadrangle face on two edges.
2299      *
2300      *  The missing edges will be built by creating the shortest ones.
2301      *  \param theEdge1,theEdge2 Two opposite edges for the face.
2302      *  \return New GEOM_Object, containing the created face.
2303      */
2304     GEOM_Object MakeQuad2Edges (in GEOM_Object theEdge1,
2305                                 in GEOM_Object theEdge2);
2306
2307     /*!
2308      *  \brief Create a quadrangle face with specified corners.
2309      *
2310      *  The missing edges will be built by creating the shortest ones.
2311      *  \param thePnt1,thePnt2,thePnt3,thePnt4 Corner vertices for the face.
2312      *  \return New GEOM_Object, containing the created face.
2313      */
2314     GEOM_Object MakeQuad4Vertices (in GEOM_Object thePnt1,
2315                                    in GEOM_Object thePnt2,
2316                                    in GEOM_Object thePnt3,
2317                                    in GEOM_Object thePnt4);
2318
2319     /*!
2320      *  \brief Create a hexahedral solid, bounded by the six given faces. Order of
2321      *  faces is not important. 
2322      *
2323      *  It is  not necessary that Faces share the same edge.
2324      *  \param theFace1,theFace2,theFace3,theFace4,theFace5,theFace6 Faces for the hexahedral solid.
2325      *  \return New GEOM_Object, containing the created solid.
2326      */
2327     GEOM_Object MakeHexa (in GEOM_Object theFace1,
2328                           in GEOM_Object theFace2,
2329                           in GEOM_Object theFace3,
2330                           in GEOM_Object theFace4,
2331                           in GEOM_Object theFace5,
2332                           in GEOM_Object theFace6);
2333
2334     /*!
2335      *  \brief Create a hexahedral solid between two given faces.
2336      *
2337      *  The missing faces will be built by creating the smallest ones.
2338      *  \param theFace1,theFace2 Two opposite faces for the hexahedral solid.
2339      *  \return New GEOM_Object, containing the created solid.
2340      */
2341     GEOM_Object MakeHexa2Faces (in GEOM_Object theFace1,
2342                                 in GEOM_Object theFace2);
2343
2344     
2345   //  # Extract elements of blocks and blocks compounds
2346      
2347
2348     /*!
2349      *  \brief Get a vertex, found in the given shape by its coordinates.
2350      *  \param theShape Block or a compound of blocks.
2351      *  \param theX,theY,theZ Coordinates of the sought vertex.
2352      *  \param theEpsilon Maximum allowed distance between the resulting
2353      *                    vertex and point with the given coordinates.
2354      *  \return New GEOM_Object, containing the found vertex.
2355      */
2356     GEOM_Object GetPoint (in GEOM_Object theShape,
2357                           in double      theX,
2358                           in double      theY,
2359                           in double      theZ,
2360                           in double      theEpsilon);
2361
2362     /*!
2363      *  \brief Find a vertex of the given shape, which has minimal distance to the given point.
2364      *  \param theShape Any shape.
2365      *  \param thePoint Point, close to the desired vertex.
2366      *  \return New GEOM_Object, containing the found vertex.
2367      */
2368     GEOM_Object GetVertexNearPoint (in GEOM_Object theShape,
2369                                     in GEOM_Object thePoint);
2370
2371     /*!
2372      *  \brief Get an edge, found in the given shape by two given vertices.
2373      *  \param theShape Block or a compound of blocks.
2374      *  \param thePoint1,thePoint2 Points, close to the ends of the desired edge.
2375      *  \return New GEOM_Object, containing the found edge.
2376      */
2377     GEOM_Object GetEdge (in GEOM_Object theShape,
2378                          in GEOM_Object thePoint1,
2379                          in GEOM_Object thePoint2);
2380
2381     /*!
2382      *  \brief Find an edge of the given shape, which has minimal distance to the given point.
2383      *  \param theShape Block or a compound of blocks.
2384      *  \param thePoint Point, close to the desired edge.
2385      *  \return New GEOM_Object, containing the found edge.
2386      */
2387     GEOM_Object GetEdgeNearPoint (in GEOM_Object theShape,
2388                                   in GEOM_Object thePoint);
2389
2390     /*!
2391      *  \brief Returns a face, found in the given shape by four given corner vertices.
2392      *  \param theShape Block or a compound of blocks.
2393      *  \param thePoint1,thePoint2,thePoint3,thePoint4 Points, close to the corners of the desired face.
2394      *  \return New GEOM_Object, containing the found face.
2395      */
2396     GEOM_Object GetFaceByPoints (in GEOM_Object theShape,
2397                                  in GEOM_Object thePoint1,
2398                                  in GEOM_Object thePoint2,
2399                                  in GEOM_Object thePoint3,
2400                                  in GEOM_Object thePoint4);
2401
2402     /*!
2403      *  \brief Get a face of block, found in the given shape by two given edges.
2404      *  \param theShape Block or a compound of blocks.
2405      *  \param theEdge1,theEdge2 Edges, close to the edges of the desired face.
2406      *  \return New GEOM_Object, containing the found face.
2407      */
2408     GEOM_Object GetFaceByEdges (in GEOM_Object theShape,
2409                                 in GEOM_Object theEdge1,
2410                                 in GEOM_Object theEdge2);
2411
2412     /*!
2413      *  \brief Find a face, opposite to the given one in the given block.
2414      *  \param theBlock Must be a hexahedral solid.
2415      *  \param theFace Face of \a theBlock, opposite to the desired face.
2416      *  \return New GEOM_Object, containing the found face.
2417      */
2418     GEOM_Object GetOppositeFace (in GEOM_Object theBlock,
2419                                  in GEOM_Object theFace);
2420
2421     /*!
2422      *  \brief Find a face of the given shape, which has minimal distance to the given point.
2423      *  \param theShape Block or a compound of blocks.
2424      *  \param thePoint Point, close to the desired face.
2425      *  \return New GEOM_Object, containing the found face.
2426      */
2427     GEOM_Object GetFaceNearPoint (in GEOM_Object theShape,
2428                                   in GEOM_Object thePoint);
2429
2430     /*!
2431      *  \brief Find a face of block, whose outside normale has minimal angle with the given vector.
2432      *  \param theBlock Block or a compound of blocks.
2433      *  \param theVector Vector, close to the normale of the desired face.
2434      *  \return New GEOM_Object, containing the found face.
2435      */
2436     GEOM_Object GetFaceByNormale (in GEOM_Object theBlock,
2437                                   in GEOM_Object theVector);
2438
2439     /*!
2440      *  \brief Find all sub-shapes of type \a theShapeType of the given shape,
2441      *  which have minimal distance to the given point.
2442      *  \param theShape Any shape.
2443      *  \param thePoint Point, close to the desired shape.
2444      *  \param theShapeType Defines what kind of sub-shapes is searched.
2445      *  \param theTolerance The tolerance for distances comparison. All shapes
2446      *                      with distances to the given point in interval
2447      *                      [minimal_distance, minimal_distance + theTolerance] will be gathered.
2448      *  \return New GEOM_Object, containing a group of all found shapes.
2449      */
2450     GEOM_Object GetShapesNearPoint (in GEOM_Object theShape,
2451                                     in GEOM_Object thePoint,
2452                                     in long        theShapeType,
2453                                     in double      theTolerance);
2454
2455    //  #  Extract blocks from blocks compounds
2456      
2457
2458     /*!
2459      *  \brief Check, if the compound contains only specified blocks.
2460      *  \param theCompound The compound to check.
2461      *  \param theMinNbFaces If solid has lower number of faces, it is not a block.
2462      *  \param theMaxNbFaces If solid has higher number of faces, it is not a block.
2463      *    \note If theMaxNbFaces = 0, the maximum number of faces is not restricted.
2464      *  \param theNbBlocks Number of specified blocks in theCompound.
2465      *  \return TRUE, if the given compound contains only blocks.
2466      */
2467     boolean IsCompoundOfBlocks (in GEOM_Object theCompound,
2468                                 in long        theMinNbFaces,
2469                                 in long        theMaxNbFaces,
2470                                 out long       theNbBlocks);
2471
2472     /*!
2473      *  \brief Enumeration of Blocks Compound defects.
2474      */
2475     enum BCErrorType
2476     {
2477       /* Each element of the compound should be a Block */
2478       NOT_BLOCK,
2479
2480       /* An element is a potential block, but has degenerated and/or seam edge(s). */
2481       EXTRA_EDGE,
2482
2483       /* A connection between two Blocks should be an entire face or an entire edge */
2484       INVALID_CONNECTION,
2485
2486       /* The compound should be connexe */
2487       NOT_CONNECTED,
2488
2489       /* The glue between two quadrangle faces should be applied */
2490       NOT_GLUED
2491     };
2492
2493     /*!
2494      *  \brief Description of Blocks Compound defect: type and incriminated sub-shapes.
2495      */
2496     struct BCError
2497     {
2498       BCErrorType error;
2499       ListOfLong  incriminated;
2500     };
2501
2502     /*!
2503      *  \brief Sequence of all Blocks Compound defects.
2504      */
2505     typedef sequence<BCError> BCErrors;
2506
2507     /*!
2508      *  \brief Check, if the compound of blocks is given.
2509      *
2510      *  To be considered as a compound of blocks, the
2511      *  given shape must satisfy the following conditions:
2512      *  - Each element of the compound should be a Block (6 faces and 12 edges).
2513      *  - A connection between two Blocks should be an entire quadrangle face or an entire edge.
2514      *  - The compound should be connexe.
2515      *  - The glue between two quadrangle faces should be applied.
2516      *    \note Single block is also accepted as a valid compound of blocks.
2517      *  \param theCompound The compound to check.
2518      *  \param theErrors Structure, containing discovered errors and incriminated sub-shapes.
2519      *  \return TRUE, if the given shape is a compound of blocks.
2520      */
2521     boolean CheckCompoundOfBlocks (in GEOM_Object theCompound,
2522                                    out BCErrors   theErrors);
2523
2524     /*!
2525      *  \brief Convert sequence of Blocks Compound errors, returned by
2526      *  <VAR>CheckCompoundOfBlocks()</VAR>, into string.
2527      *  \param theCompound The bad compound.
2528      *  \param theErrors The sequence of \a theCompound errors.
2529      *  \return String, describing all the errors in form, suitable for printing.
2530      */
2531     string PrintBCErrors (in GEOM_Object theCompound,
2532                           in BCErrors    theErrors);
2533
2534     /*!
2535      *  \brief Retrieve all non blocks solids and faces from a shape.
2536      *
2537      *  \param theShape The shape to explore.
2538      *  \param theNonQuads Output parameter. Group of all non quadrangular faces.
2539      *
2540      *  \return Group of all non block solids (= not 6 faces, or with 6
2541      *          faces, but with the presence of non-quadrangular faces).
2542      */
2543     GEOM_Object GetNonBlocks (in GEOM_Object theShape, out GEOM_Object theNonQuads);
2544
2545     /*!
2546      *  \brief Remove all seam and degenerated edges from \a theShape.
2547      *
2548      *  Unite faces and edges, sharing one surface.
2549      *  \param theShape The compound or single solid to remove irregular edges from.
2550      *  \param theOptimumNbFaces If more than zero, unite faces only for those solids,
2551      *         that have more than theOptimumNbFaces faces. If zero, unite faces always,
2552      *         regardsless their quantity in the solid. If negative, do not unite faces at all.
2553      *         For blocks repairing recommended value is 6.
2554      *  \return Improved shape.
2555      */
2556     GEOM_Object RemoveExtraEdges (in GEOM_Object theShape,
2557                                   in long        theOptimumNbFaces);
2558
2559     /*!
2560      *  \brief Check, if the given shape is a blocks compound.
2561      *
2562      *  Fix all detected errors.
2563      *    \note Single block can be also fixed by this method.
2564      *  \param theCompound The compound to check and improve.
2565      *  \return Improved compound.
2566      */
2567     GEOM_Object CheckAndImprove (in GEOM_Object theCompound);
2568
2569     /*!
2570      *  \brief Get all the blocks, contained in the given compound.
2571      *
2572      *  \param theCompound The compound to explode.
2573      *  \param theMinNbFaces If solid has lower number of faces, it is not a block.
2574      *  \param theMaxNbFaces If solid has higher number of faces, it is not a block.
2575      *    \note If theMaxNbFaces = 0, the maximum number of faces is not restricted.
2576      *  \return List of GEOM_Object, containing the retrieved blocks.
2577      */
2578     ListOfGO ExplodeCompoundOfBlocks (in GEOM_Object theCompound,
2579                                       in long        theMinNbFaces,
2580                                       in long        theMaxNbFaces);
2581
2582     /*!
2583      *  \brief Find block, containing the given point inside its volume or on boundary.
2584      *  \param theCompound Compound, to find block in.
2585      *  \param thePoint Point, close to the desired block. If the point lays on
2586      *         boundary between some blocks, we return block with nearest center.
2587      *  \return New GEOM_Object, containing the found block.
2588      */
2589     GEOM_Object GetBlockNearPoint (in GEOM_Object theCompound,
2590                                    in GEOM_Object thePoint);
2591
2592     /*!
2593      *  \brief Find block, containing all the elements, passed as the parts, or maximum quantity of them.
2594      *  \param theCompound Compound, to find block in.
2595      *  \param theParts List of faces and/or edges and/or vertices to be parts of the found block.
2596      *  \return New GEOM_Object, containing the found block.
2597      */
2598     GEOM_Object GetBlockByParts (in GEOM_Object theCompound,
2599                                  in ListOfGO    theParts);
2600
2601     /*!
2602      *  \brief Return all blocks, containing all the elements, passed as the parts.
2603      *  \param theCompound Compound, to find blocks in.
2604      *  \param theParts List of faces and/or edges and/or vertices to be parts of the found blocks.
2605      *  \return List of GEOM_Object, containing the found blocks.
2606      */
2607     ListOfGO GetBlocksByParts (in GEOM_Object theCompound,
2608                                in ListOfGO    theParts);
2609
2610   // #  Operations on blocks with gluing of result
2611
2612     /*!
2613      *  \brief Multi-transformate block and glue the result.
2614      *
2615      *  Transformation is defined so, as to superpose theDirFace1 with theDirFace2.
2616      *  \param theBlock Hexahedral solid to be multi-transformed.
2617      *  \param theDirFace1 First direction face global index.
2618      *  \param theDirFace2 Second direction face global index.
2619      *  \param theNbTimes Quantity of transformations to be done.
2620      *    \note Global index of sub-shape can be obtained, using method
2621      *          <VAR>GEOM_IShapesOperations.GetSubShapeIndex()</VAR>.
2622      *  \return New GEOM_Object, containing the result shape.
2623      */
2624     GEOM_Object MakeMultiTransformation1D (in GEOM_Object theBlock,
2625                                            in long        theDirFace1,
2626                                            in long        theDirFace2,
2627                                            in long        theNbTimes);
2628
2629     /*!
2630      *  \brief Multi-transformate block and glue the result.
2631      *  \param theBlock Hexahedral solid to be multi-transformed.
2632      *  \param theDirFace1U,theDirFace2U Direction faces for the first transformation.
2633      *  \param theDirFace1V,theDirFace2V Direction faces for the second transformation.
2634      *  \param theNbTimesU,theNbTimesV Quantity of transformations to be done.
2635      *  \return New GEOM_Object, containing the result shape.
2636      */
2637     GEOM_Object MakeMultiTransformation2D (in GEOM_Object theBlock,
2638                                            in long        theDirFace1U,
2639                                            in long        theDirFace2U,
2640                                            in long        theNbTimesU,
2641                                            in long        theDirFace1V,
2642                                            in long        theDirFace2V,
2643                                            in long        theNbTimesV);
2644
2645   // # Special operation - propagation
2646    
2647
2648     /*!
2649      *  \brief Build all possible propagation groups.
2650      *
2651      *  Propagation group is a set of all edges, opposite to one (main)
2652      *  edge of this group directly or through other opposite edges.
2653      *  Notion of Opposite Edge make sence only on quadrangle face.
2654      *  \param theShape Shape to build propagation groups on.
2655      *  \return List of GEOM_Object, each of them is a propagation group.
2656      */
2657     ListOfGO Propagate (in GEOM_Object theShape);
2658   };
2659
2660  // # GEOM_IBooleanOperations
2661   /*!
2662    *  \brief Interface for boolean operations (Cut, Fuse, Common)
2663    */
2664   interface GEOM_IBooleanOperations : GEOM_IOperations
2665   {
2666     /*!
2667      *  \brief Perform one of boolean operations on two given shapes.
2668      *  \param theShape1 First argument for boolean operation.
2669      *  \param theShape2 Second argument for boolean operation.
2670      *  \param theOperation Indicates the operation to be done:
2671      *                      1 - Common, 2 - Cut, 3 - Fuse, 4 - Section.
2672      *  \return New GEOM_Object, containing the result shape.
2673      */
2674     GEOM_Object MakeBoolean (in GEOM_Object theShape1,
2675                              in GEOM_Object theShape2,
2676                              in long theOperation);
2677
2678     /*!
2679      *  \brief Perform fusion boolean operation on list of objects.
2680      *  \param theShapes Shapes to be fused.
2681      *  \return New GEOM_Object, containing the result shape.
2682      */
2683     GEOM_Object MakeFuseList (in ListOfGO theShapes);
2684
2685     /*!
2686      *  \brief Perform common boolean operation on list of objects.
2687      *  \param theShapes Shapes for common operation.
2688      *  \return New GEOM_Object, containing the result shape.
2689      */
2690     GEOM_Object MakeCommonList (in ListOfGO theShapes);
2691
2692     /*!
2693      *  \brief Perform cutting of list of objects from theMainShape.
2694      *  \param theMainShape the object for cut operation.
2695      *  \param theShapes Shapes to be cut from theMainShape (tools).
2696      *  \return New GEOM_Object, containing the result shape.
2697      */
2698     GEOM_Object MakeCutList (in GEOM_Object theMainShape,
2699                              in ListOfGO theShapes);
2700
2701     /*!
2702      *  \brief Perform partition operation.
2703      *
2704      *  \param theShapes Shapes to be intersected.
2705      *  \param theTools Shapes to intersect theShapes.
2706      *  \note  Each compound from ListShapes and ListTools will be exploded in order
2707      *         to avoid possible intersection between shapes from this compound.
2708      *  \param theLimit Type of resulting shapes (corresponding to TopAbs_ShapeEnum).
2709      *  \param theKeepNonlimitShapes: if this parameter == 0, then only shapes of
2710      *                             target type (equal to Limit) are kept in the result,
2711      *                             else standalone shapes of lower dimension
2712      *                             are kept also (if they exist).
2713      *
2714      *  After implementation new version of PartitionAlgo (October 2006)
2715      *  other parameters are ignored by current functionality. They are kept
2716      *  in this function only for supporting old versions.
2717      *  Ignored parameters:
2718      *  \param theKeepInside Shapes, outside which the results will be deleted.
2719      *         Each shape from theKeepInside must belong to theShapes also.
2720      *  \param theRemoveInside Shapes, inside which the results will be deleted.
2721      *         Each shape from theRemoveInside must belong to theShapes also.
2722      *  \param theRemoveWebs If TRUE, perform Glue 3D algorithm.
2723      *  \param theMaterials Material indices for each shape. Make sence, only if theRemoveWebs is TRUE.
2724      *
2725      *  \return New GEOM_Object, containing the result shapes.
2726      */
2727     GEOM_Object MakePartition (in ListOfGO   theShapes,
2728                                in ListOfGO   theTools,
2729                                in ListOfGO   theKeepInside,
2730                                in ListOfGO   theRemoveInside,
2731                                in short      theLimit,
2732                                in boolean    theRemoveWebs,
2733                                in ListOfLong theMaterials,
2734                                in short      theKeepNonlimitShapes);
2735
2736     /*!
2737      *  \brief Perform partition operation.
2738      *
2739      *  This method may be usefull if it is needed to make a partition for
2740      *  a compound containing nonintersected shapes. Performance will be better
2741      *  since intersection between shapes from compound is not performed.
2742      *
2743      *  Description of all parameters as in previous method MakePartition()
2744      *
2745      *  \note Passed compounds (via ListShapes or via ListTools)
2746      *        have to consist of nonintersecting shapes.
2747      *
2748      *  \return New GEOM_Object, containing the result shapes.
2749      */
2750     GEOM_Object MakePartitionNonSelfIntersectedShape (in ListOfGO   theShapes,
2751                                                       in ListOfGO   theTools,
2752                                                       in ListOfGO   theKeepInside,
2753                                                       in ListOfGO   theRemoveInside,
2754                                                       in short      theLimit,
2755                                                       in boolean    theRemoveWebs,
2756                                                       in ListOfLong theMaterials,
2757                                                       in short      theKeepNonlimitShapes);
2758
2759     /*!
2760      *  \brief Perform partition of the Shape with the Plane
2761      *  \param theShape Shape to be intersected.
2762      *  \param thePlane Tool shape, to intersect theShape.
2763      *  \return New GEOM_Object, containing the result shape.
2764      */
2765     GEOM_Object MakeHalfPartition (in GEOM_Object theShape,
2766                                    in GEOM_Object thePlane);
2767   };
2768
2769  // # GEOM_ICurvesOperations:
2770   /*!
2771    *  \brief Interface for curves creation.
2772    *
2773    *  Polyline, Circle, Spline (Bezier and Interpolation)
2774    */
2775   interface GEOM_ICurvesOperations : GEOM_IOperations
2776   {
2777     /*!
2778      *  \brief Create a circle with given center, normal vector and radius.
2779      *  \param thePnt Circle center.
2780      *  \param theVec Vector, normal to the plane of the circle.
2781      *  \param theR Circle radius.
2782      *  \return New GEOM_Object, containing the created circle.
2783      */
2784     GEOM_Object MakeCirclePntVecR (in GEOM_Object thePnt,
2785                                    in GEOM_Object theVec,
2786                                    in double theR);
2787     /*!
2788      *  \brief Create a circle, passing through three given points
2789      *  \param thePnt1,thePnt2,thePnt3 Points, defining the circle.
2790      *  \return New GEOM_Object, containing the created circle.
2791      */
2792     GEOM_Object MakeCircleThreePnt (in GEOM_Object thePnt1,
2793                                     in GEOM_Object thePnt2,
2794                                     in GEOM_Object thePnt3);
2795     /*!
2796      *  \brief Create a circle with given center, with a radius equals the distance from center to Point1
2797      *  and on a plane defined by all of three points.
2798      *  \param thePnt1,thePnt2,thePnt3 Points, defining the circle.
2799      *  \return New GEOM_Object, containing the created circle.
2800      */
2801     GEOM_Object MakeCircleCenter2Pnt (in GEOM_Object thePnt1,
2802                                       in GEOM_Object thePnt2,
2803                                       in GEOM_Object thePnt3);
2804     /*!
2805      *  \brief Create an ellipse with given center, normal vector and radiuses.
2806      *  \param thePnt Ellipse center.
2807      *  \param theVec Vector, normal to the plane of the ellipse.
2808      *  \param theRMajor Major ellipse radius.
2809      *  \param theRMinor Minor ellipse radius.
2810      *  \return New GEOM_Object, containing the created ellipse.
2811      */
2812     GEOM_Object MakeEllipse (in GEOM_Object thePnt,
2813                              in GEOM_Object theVec,
2814                              in double theRMajor,
2815                              in double theRMinor);
2816
2817     /*!
2818      *  \brief Create an ellipse with given center, normal vector, main axis vector and radiuses.
2819      *  \param thePnt Ellipse center.
2820      *  \param theVec Vector, normal to the plane of the ellipse.
2821      *  \param theRMajor Major ellipse radius.
2822      *  \param theRMinor Minor ellipse radius.
2823      *  \param theVecMaj Vector, direction of the ellipse's main axis.
2824      *  \return New GEOM_Object, containing the created ellipse.
2825      */
2826     GEOM_Object MakeEllipseVec (in GEOM_Object thePnt,
2827                                 in GEOM_Object theVec,
2828                                 in double theRMajor,
2829                                 in double theRMinor,
2830                                 in GEOM_Object theVecMaj);
2831
2832     /*!
2833      *  \brief Create an arc of circle, passing through three given points.
2834      *  \param thePnt1 Start point of the arc.
2835      *  \param thePnt2 Middle point of the arc.
2836      *  \param thePnt3 End point of the arc.
2837      *  \return New GEOM_Object, containing the created arc.
2838      */
2839     GEOM_Object MakeArc (in GEOM_Object thePnt1,
2840                          in GEOM_Object thePnt2,
2841                          in GEOM_Object thePnt3);
2842
2843     /*!
2844      *  \brief Create an arc of circle of center C from one point to another
2845      *  \param theCenter Center point of the arc.
2846      *  \param thePnt1 Start point of the arc.
2847      *  \param thePnt2 End point of the arc.
2848      *  \param theSense Orientation of the arc
2849      *  \return New GEOM_Object, containing the created arc.
2850      */
2851     GEOM_Object MakeArcCenter (in GEOM_Object theCenter,
2852                                in GEOM_Object thePnt1,
2853                                in GEOM_Object thePnt2,
2854                                in boolean theSense);
2855
2856     /*!
2857      *  \brief Create an arc of ellipse of center C and two points P1 P2.
2858      *  \param theCenter Center point of the arc.
2859      *  \param thePnt1 Major radius is distance from center to Pnt1.
2860      *  \param thePnt2 define a plane and Minor radius as a shortest
2861      *                 distance from Pnt2 to vector Center->Pnt1.
2862      *  \return New GEOM_Object, containing the created arc.
2863      */
2864     GEOM_Object MakeArcOfEllipse (in GEOM_Object theCenter,
2865                                   in GEOM_Object thePnt1,
2866                                   in GEOM_Object thePnt2);
2867
2868
2869     /*!
2870      *  \brief Create a polyline on the set of points.
2871      *  \param thePoints Sequence of points for the polyline.
2872      *  \param theIsClosed If TRUE, build a closed wire.
2873      *  \return New GEOM_Object, containing the created polyline.
2874      */
2875     GEOM_Object MakePolyline (in ListOfGO thePoints,
2876                               in boolean  theIsClosed);
2877
2878     /*!
2879      *  \brief Create bezier curve on the set of points.
2880      *  \param thePoints Sequence of points for the bezier curve.
2881      *  \param theIsClosed If TRUE, build a closed curve.
2882      *  \return New GEOM_Object, containing the created bezier curve.
2883      */
2884     GEOM_Object MakeSplineBezier (in ListOfGO thePoints,
2885                                   in boolean  theIsClosed);
2886
2887     /*!
2888      *  \brief Create B-Spline curve on the set of points.
2889      *  \param thePoints Sequence of points for the B-Spline curve.
2890      *  \param theIsClosed If TRUE, build a closed curve.
2891      *  \param theDoReordering If TRUE, the algo does not follow the order of
2892      *                         \a thePoints but searches for the closest vertex.
2893      *  \return New GEOM_Object, containing the created B-Spline curve.
2894      */
2895     GEOM_Object MakeSplineInterpolation (in ListOfGO thePoints,
2896                                          in boolean  theIsClosed,
2897                                          in boolean  theDoReordering);
2898
2899     /*!
2900      *  \brief Create B-Spline curve on the set of points.
2901      *  \param thePoints Sequence of points for the B-Spline curve.
2902      *  \param theFirstVec Vector object, defining the curve direction at its first point.
2903      *  \param theLastVec Vector object, defining the curve direction at its last point.
2904      *  \return New GEOM_Object, containing the created B-Spline curve.
2905      */
2906     GEOM_Object MakeSplineInterpolWithTangents (in ListOfGO    thePoints,
2907                                                 in GEOM_Object theFirstVec,
2908                                                 in GEOM_Object theLastVec);
2909
2910     /*!
2911      *  \brief Creates a curve using the parametric definition of the basic points.
2912      *  \param thexExpr parametric equation of the coordinates X.
2913      *  \param theyExpr parametric equation of the coordinates Y.
2914      *  \param thezExpr parametric equation of the coordinates Z.
2915      *  \param theParamMin the minimal value of the parameter.
2916      *  \param theParamMax the maximum value of the parameter.
2917      *  \param theParamStep the step of the parameter.
2918      *  \param theCurveType the type of the curve.
2919      *  \return New GEOM_Object, containing the created curve.
2920      */    
2921     GEOM_Object MakeCurveParametric(in string thexExpr,
2922                                     in string theyExpr,
2923                                     in string thezExpr,
2924                                     in double theParamMin,
2925                                     in double theParamMax,
2926                                     in double theParamStep,
2927                                     in curve_type theCurveType);
2928
2929      /*!
2930      *  \brief Creates a curve using the parametric definition of the basic points.
2931      *  \param thexExpr parametric equation of the coordinates X.
2932      *  \param theyExpr parametric equation of the coordinates Y.
2933      *  \param thezExpr parametric equation of the coordinates Z.
2934      *  \param theParamMin the minimal value of the parameter.
2935      *  \param theParamMax the maximum value of the parameter.
2936      *  \param theParamNbStep the number of steps of the parameter discretization.
2937      *  \param theCurveType the type of the curve.
2938      *  \return New GEOM_Object, containing the created curve.
2939      */    
2940     GEOM_Object MakeCurveParametricNew(in string thexExpr,
2941                     in string theyExpr,
2942                     in string thezExpr,
2943                     in double theParamMin,
2944                     in double theParamMax,
2945                     in long   theParamNbStep,
2946                     in curve_type theCurveType);
2947
2948     /*!
2949      *  \brief Create a sketcher (wire or face), following the textual description,
2950      *         passed through \a theCommand argument.
2951      *
2952      *  Edges of the resulting wire or face will be arcs of circles and/or linear segments. \n
2953      *  Format of the description string has to be the following:
2954      *
2955      *  "Sketcher[:F x1 y1]:CMD[:CMD[:CMD...]]"
2956      *
2957      *  Where:
2958      *  - x1, y1 are coordinates of the first sketcher point (zero by default),
2959      *  - CMD is one of
2960      *     - "R angle" : Set the direction by angle
2961      *     - "D dx dy" : Set the direction by DX & DY
2962      *     .
2963      *       \n
2964      *     - "TT x y" : Create segment by point at X & Y
2965      *     - "T dx dy" : Create segment by point with DX & DY
2966      *     - "L length" : Create segment by direction & Length
2967      *     - "IX x" : Create segment by direction & Intersect. X
2968      *     - "IY y" : Create segment by direction & Intersect. Y
2969      *     .
2970      *       \n
2971      *     - "C radius length" : Create arc by direction, radius and length(in degree)
2972      *     .
2973      *       \n
2974      *     - "WW" : Close Wire (to finish)
2975      *     - "WF" : Close Wire and build face (to finish)
2976      *
2977      *  \param theCommand String, defining the sketcher in local
2978      *                    coordinates of the working plane.
2979      *  \param theWorkingPlane Nine double values, defining origin,
2980      *                         OZ and OX directions of the working plane.
2981      *  \return New GEOM_Object, containing the created wire or face.
2982      */
2983     GEOM_Object MakeSketcher (in string theCommand, in ListOfDouble theWorkingPlane);
2984
2985     /*!
2986      *  \brief Create a sketcher (wire or face), following the textual description,
2987      *         passed through \a theCommand argument. 
2988      *
2989      *  For format of the description string see the previous method.\n
2990      *
2991      *  \param theCommand String, defining the sketcher in local
2992      *                    coordinates of the working plane.
2993      *  \param theWorkingPlane Planar Face or LCS(Marker) of the working plane.
2994      *  \return New GEOM_Object, containing the created wire or face.
2995      */
2996     GEOM_Object MakeSketcherOnPlane (in string theCommand, in GEOM_Object theWorkingPlane);
2997
2998     /*!
2999      *  \brief Create a 3D sketcher, following the textual description,
3000      *         passed through \a theCommand argument. 
3001      *
3002      *  Format of the description string has to be the following:
3003      *
3004      *  "3DSketcher:CMD[:CMD[:CMD...]]"
3005      *
3006      *  Where CMD is one of
3007      *     - "TT x y z" : Create segment by point at X & Y or set the first point
3008      *     - "T dx dy dz" : Create segment by point with DX & DY
3009      *     .
3010      *       \n
3011      *     - "OXY angleX angle2 length" : Create segment by two angles and length
3012      *     - "OYZ angleY angle2 length" : Create segment by two angles and length
3013      *     - "OXZ angleX angle2 length" : Create segment by two angles and length
3014      *     .
3015      *       \n
3016      *     - "WW" : Close Wire (to finish)
3017      *
3018      *  \param theCommand String, defining the sketcher in local
3019      *                    coordinates of the working plane.
3020      *  \return New GEOM_Object, containing the created wire.
3021      */
3022     GEOM_Object Make3DSketcherCommand (in string theCommand);
3023
3024     /*!
3025      *  \brief Create a 3D sketcher, made of a straight segments, joining points
3026      *         with coordinates passed through \a theCoordinates argument. 
3027      *
3028      *  Order of coordinates has to be the following:
3029      *  x1, y1, z1, x2, y2, z2, ..., xN, yN, zN
3030      *
3031      *  \param theCoordinates List of double values.
3032      *  \return New GEOM_Object, containing the created wire.
3033      */
3034     GEOM_Object Make3DSketcher (in ListOfDouble theCoordinates);
3035   };
3036
3037  // # GEOM_ILocalOperations:
3038   /*!
3039    *  \brief Interface for fillet and chamfer creation.
3040    */
3041   interface GEOM_ILocalOperations : GEOM_IOperations
3042   {
3043     /*!
3044      *  \brief Perform a fillet on all edges of the given shape.
3045      *  \param theShape Shape, to perform fillet on.
3046      *  \param theR Fillet radius.
3047      *  \return New GEOM_Object, containing the result shape.
3048      */
3049     GEOM_Object MakeFilletAll (in GEOM_Object theShape,
3050                                in double      theR);
3051
3052     /*!
3053      *  \brief Perform a fillet on the specified edges of the given shape
3054      *  \param theShape Shape, to perform fillet on.
3055      *  \param theR Fillet radius.
3056      *  \param theEdges Global indices of edges to perform fillet on.
3057      *    \note Global index of sub-shape can be obtained, using method
3058      *          <VAR>GEOM_IShapesOperations.GetSubShapeIndex()</VAR>.
3059      *  \return New GEOM_Object, containing the result shape.
3060      */
3061     GEOM_Object MakeFilletEdges (in GEOM_Object theShape,
3062                                  in double      theR,
3063                                  in ListOfLong  theEdges);
3064     GEOM_Object MakeFilletEdgesR1R2 (in GEOM_Object theShape,
3065                                      in double      theR1,
3066                                      in double      theR2,
3067                                      in ListOfLong  theEdges);
3068
3069     /*!
3070      *  \brief Perform a fillet on all edges of the specified faces of the given shape.
3071      *  \param theShape Shape, to perform fillet on.
3072      *  \param theR Fillet radius.
3073      *  \param theFaces Global indices of faces to perform fillet on.
3074      *    \note Global index of sub-shape can be obtained, using method
3075      *          <VAR>GEOM_IShapesOperations.GetSubShapeIndex()</VAR>.
3076      *  \return New GEOM_Object, containing the result shape.
3077      */
3078     GEOM_Object MakeFilletFaces (in GEOM_Object theShape,
3079                                  in double      theR,
3080                                  in ListOfLong  theFaces);
3081
3082     GEOM_Object MakeFilletFacesR1R2 (in GEOM_Object theShape,
3083                                      in double      theR1,
3084                                      in double      theR2,
3085                                      in ListOfLong  theFaces);
3086
3087     /*!
3088      *  \brief Perform a fillet on a face or a shell at the specified vertexes.
3089      *  \param theShape Shape, to perform fillet on.
3090      *  \param theR Fillet radius.
3091      *  \param theVertexes Global indices of vertexes to perform fillet on.
3092      *    \note Global index of sub-shape can be obtained, using method
3093      *          <VAR>GEOM_IShapesOperations.GetSubShapeIndex()</VAR>.
3094      *  \return New GEOM_Object, containing the result shape.
3095      */
3096     GEOM_Object MakeFillet2D (in GEOM_Object theShape,
3097                               in double      theR,
3098                               in ListOfLong  theVertexes);
3099
3100     /*!
3101      *  \brief Perform a fillet on edges of the specified vertexes of the given wire.
3102      *  \param theShape Shape, to perform fillet on.
3103      *  \param theR Fillet radius.
3104      *  \param theVertexes Global indices of vertexes to perform fillet on.
3105      *    \note Global index of sub-shape can be obtained, using method
3106      *          <VAR>GEOM_IShapesOperations.GetSubShapeIndex()</VAR>.
3107      *    \note The list of vertices coudl be empty, in this case fillet fill be done
3108      *          at all vertices in given wire
3109      *  \param doIgnoreSecantVertices If FALSE, fillet radius is always limited
3110      *         by the length of the edges, nearest to the fillet vertex.
3111      *         But sometimes the next edge is C1 continuous with the one, nearest to
3112      *         the fillet point, and such two (or more) edges can be united to allow
3113      *         bigger radius. Set this flag to TRUE to allow collinear edges union,
3114      *         thus ignoring the secant vertex (vertices).
3115      *  \return New GEOM_Object, containing the result shape.
3116      */
3117     GEOM_Object MakeFillet1D (in GEOM_Object theShape,
3118                               in double      theR,
3119                               in ListOfLong  theVertexes,
3120                               in boolean     doIgnoreSecantVertices);
3121
3122     /*!
3123      *  \brief Perform a symmetric chamfer on all edges of the given shape.
3124      *  \param theShape Shape, to perform chamfer on.
3125      *  \param theD Chamfer size along each face.
3126      *  \return New GEOM_Object, containing the result shape.
3127      */
3128     GEOM_Object MakeChamferAll (in GEOM_Object theShape,
3129                                 in double      theD);
3130
3131     /*!
3132      *  \brief Perform a chamfer on edges, common to the specified faces.
3133      *  with distance D1 on the Face1
3134      *  \param theShape Shape, to perform chamfer on.
3135      *  \param theD1 Chamfer size along \a theFace1.
3136      *  \param theD2 Chamfer size along \a theFace2.
3137      *  \param theFace1,theFace2 Global indices of two faces of \a theShape.
3138      *    \note Global index of sub-shape can be obtained, using method
3139      *          <VAR>GEOM_IShapesOperations.GetSubShapeIndex()</VAR>.
3140      *  \return New GEOM_Object, containing the result shape.
3141      */
3142     GEOM_Object MakeChamferEdge (in GEOM_Object theShape,
3143                                  in double theD1, in double theD2,
3144                                  in long theFace1, in long theFace2);
3145     /*!
3146      *  \brief The Same but with params theD = Chamfer Lenght
3147      *  and theAngle = Chamfer Angle (Angle in radians)
3148      */
3149     GEOM_Object MakeChamferEdgeAD (in GEOM_Object theShape,
3150                                    in double theD, in double theAngle,
3151                                    in long theFace1, in long theFace2);
3152
3153     /*!
3154      *  \brief Perform a chamfer on all edges of the specified faces.
3155      *  with distance D1 on the first specified face (if several for one edge)
3156      *  \param theShape Shape, to perform chamfer on.
3157      *  \param theD1 Chamfer size along face from \a theFaces. If both faces,
3158      *               connected to the edge, are in \a theFaces, \a theD1
3159      *               will be get along face, which is nearer to \a theFaces beginning.
3160      *  \param theD2 Chamfer size along another of two faces, connected to the edge.
3161      *  \param theFaces Sequence of global indices of faces of \a theShape.
3162      *    \note Global index of sub-shape can be obtained, using method
3163      *          <VAR>GEOM_IShapesOperations.GetSubShapeIndex()</VAR>.
3164      *  \return New GEOM_Object, containing the result shape.
3165      */
3166     GEOM_Object MakeChamferFaces (in GEOM_Object theShape,
3167                                   in double theD1, in double theD2,
3168                                   in ListOfLong theFaces);
3169     /*!
3170      *  The Same but with params theD = Chamfer Lenght
3171      *  and theAngle = Chamfer Angle (Angle in radians)
3172      */
3173     GEOM_Object MakeChamferFacesAD (in GEOM_Object theShape,
3174                                     in double theD, in double theAngle,
3175                                     in ListOfLong theFaces);
3176
3177    /*!
3178     *  \brief Perform a chamfer on edges,
3179     *  with distance D1 on the first specified face (if several for one edge)
3180     *  \param theShape Shape, to perform chamfer on.
3181     *  \param theD1,theD2 Chamfer size
3182     *  \param theEdges Sequence of edges of \a theShape.
3183     *  \return New GEOM_Object, containing the result shape.
3184     */
3185     GEOM_Object MakeChamferEdges (in GEOM_Object theShape,
3186                                   in double theD1, in double theD2,
3187                                   in ListOfLong theEdges);
3188     /*!
3189      *  The Same but with params theD = Chamfer Lenght
3190      *  and theAngle = Chamfer Angle (Angle in radians)
3191      */
3192     GEOM_Object MakeChamferEdgesAD (in GEOM_Object theShape,
3193                                     in double theD, in double theAngle,
3194                                     in ListOfLong theEdges);
3195
3196     /*!
3197      *  \brief Perform an Archimde operation on the given shape with given parameters.
3198      *                    The object presenting the resulting face is returned
3199      *  \param theShape Shape to be put in water.
3200      *  \param theWeight Weight og the shape.
3201      *  \param theWaterDensity Density of the water.
3202      *  \param theMeshDeflection Deflection od the mesh, using to compute the section.
3203      *  \return New GEOM_Object, containing a section of \a theShape
3204      *          by a plane, corresponding to water level.
3205      */
3206     GEOM_Object MakeArchimede (in GEOM_Object theShape,
3207                                in double theWeight,
3208                                in double theWaterDensity,
3209                                in double theMeshDeflection);
3210
3211     /*!
3212      *  \brief Duplicates <VAR>GEOM_IShapesOperations.GetSubShapeIndex()</VAR>.
3213      *
3214      *  Present here only for compatibility.
3215      */
3216     long GetSubShapeIndex (in GEOM_Object theShape, in GEOM_Object theSubShape);
3217   };
3218
3219  // #  GEOM_IHealingOperations: 
3220   /*!
3221    *  \brief Interface for shape healing operations
3222    *
3223    *  Shape Processing, SuppressFaces, etc.
3224    */
3225   interface GEOM_IHealingOperations : GEOM_IOperations
3226   {
3227     /*!
3228      *  \brief Apply a sequence of Shape Healing operators to the given object.
3229      *  \param theShapes Shape to be processed.
3230      *  \param theOperators List of names of operators ("FixShape", "SplitClosedFaces", etc.).
3231      *  \param theParameters List of names of parameters
3232      *                    ("FixShape.Tolerance3d", "SplitClosedFaces.NbSplitPoints", etc.).
3233      *  \param theValues List of values of parameters, in the same order
3234      *                    as parameters are listed in \a theParameters list.
3235      *  \return New GEOM_Object, containing processed shape.
3236      */
3237     GEOM_Object ProcessShape (in GEOM_Object theShapes,
3238                               in string_array theOperators,
3239                               in string_array theParameters,
3240                               in string_array theValues);
3241
3242     /*!
3243      *  \brief Get default sequence of operators, their parameters and parameters' values
3244      *  of Shape Process operation. 
3245      *
3246      *  In the current implementation the defaults are
3247      *  read from the file pointed by CSF_ShHealingDefaults environmental variable.
3248      *  \param theOperators Output. Default list of names of operators.
3249      *  \param theParameters Output. Default list of names of parameters.
3250      *  \param theValues Output. List of default values of parameters, in the same order
3251      *                           as parameters are listed in \a theParameters list.
3252      */
3253     void GetShapeProcessParameters (out string_array theOperators,
3254                                     out string_array theParameters,
3255                                     out string_array theValues);
3256     /*!
3257      *  \brief Get parameters and parameters' values for the given Shape Process operation.
3258      *
3259      *  In the current implementation the defaults are
3260      *  read from the file pointed by CSF_ShHealingDefaults environmental variable.
3261      *  \param theOperator Input. The operator's name.
3262      *  \param theParameters Output. Default list of names of parameters.
3263      *  \param theValues Output. List of default values of parameters, in the same order
3264      *                           as parameters are listed in \a theParameters list.
3265      */
3266     void GetOperatorParameters (in string theOperator,
3267                                 out string_array theParameters,
3268                                 out string_array theValues);
3269
3270     /*!
3271      *  \brief Remove faces from the given object (shape).
3272      *  \param theObject Shape to be processed.
3273      *  \param theFaces Indices of faces to be removed, if EMPTY then the method
3274      *                  removes ALL faces of the given object.
3275      *  \return New GEOM_Object, containing processed shape.
3276      */
3277     GEOM_Object SuppressFaces (in GEOM_Object theObject, in short_array theFaces);
3278
3279     /*!
3280      *  \brief Close an open wire.
3281      *  \param theObject Shape to be processed.
3282      *  \param theWires Indexes of edge(s) and wire(s) to be closed within <VAR>theObject</VAR>'s shape,
3283      *                  if -1, then theObject itself is a wire.
3284      *  \param isCommonVertex If TRUE : closure by creation of a common vertex,
3285      *                        If FALS : closure by creation of an edge between ends.
3286      *  \return New GEOM_Object, containing processed shape.
3287      */
3288     GEOM_Object CloseContour (in GEOM_Object theObject, in short_array theWires,
3289                               in boolean isCommonVertex);
3290
3291     /*!
3292      *  \brief Remove internal wires and edges from the given object (face).
3293      *  \param theObject Shape to be processed.
3294      *  \param theWires Indices of wires to be removed, if EMPTY then the method
3295      *                  removes ALL internal wires of the given object.
3296      *  \return New GEOM_Object, containing processed shape.
3297      */
3298     GEOM_Object RemoveIntWires (in GEOM_Object theObject, in short_array theWires);
3299
3300     /*!
3301      *  \brief Remove internal closed contours (holes) from the given object.
3302      *  \param theObject Shape to be processed.
3303      *  \param theWires Indices of wires to be removed, if EMPTY then the method
3304      *                  removes ALL internal holes of the given object
3305      *  \return New GEOM_Object, containing processed shape.
3306      */
3307     GEOM_Object FillHoles (in GEOM_Object theObject, in short_array theWires);
3308
3309     /*!
3310      *  Sewing of the given object.
3311      *  \param theObject Shape to be processed.
3312      *  \param theTolerance Required tolerance value.
3313      *  \return New GEOM_Object, containing processed shape.
3314      */
3315     GEOM_Object Sew (in GEOM_Object theObject, in double theTolerance);
3316
3317     /*!
3318      *  \brief Addition of a point to a given edge object.
3319      *  \param theObject Shape to be processed.
3320      *  \param theEdgeIndex Index of edge to be divided within theObject's shape,
3321      *                      if -1, then theObject itself is the edge.
3322      *  \param theValue Value of parameter on edge or length parameter,
3323      *                  depending on \a isByParameter.
3324      *  \param isByParameter If TRUE : \a theValue is treated as a curve parameter [0..1],
3325      *                       if FALSE : \a theValue is treated as a length parameter [0..1]
3326      *  \return New GEOM_Object, containing processed shape.
3327      */
3328     GEOM_Object DivideEdge (in GEOM_Object theObject, in short theEdgeIndex,
3329                             in double theValue, in boolean isByParameter);
3330
3331     /*!
3332      *  \brief Suppress the vertices in the wire in case if adjacent edges are C1 continuous.
3333      *  \param theWire Wire to minimize the number of C1 continuous edges in.
3334      *  \param theVertices A list of vertices to suppress. If the list
3335      *                     is empty, all vertices in a wire will be assumed.
3336      *  \return New GEOM_Object with modified wire.
3337      */
3338     GEOM_Object FuseCollinearEdgesWithinWire (in GEOM_Object theWire,
3339                                               in ListOfGO theVertices);
3340
3341     /*!
3342      *  \brief Get a list of wires (wrapped in GEOM_Object-s),
3343      *  that constitute a free boundary of the given shape.
3344      *  \param theObject Shape to get free boundary of.
3345      *  \param theClosedWires Output. Closed wires on the free boundary of the given shape.
3346      *  \param theOpenWires Output. Open wires on the free boundary of the given shape.
3347      *  \return FALSE, if an error(s) occured during the method execution.
3348      */
3349     boolean GetFreeBoundary (in GEOM_Object theObject,
3350                              out ListOfGO theClosedWires,
3351                              out ListOfGO theOpenWires);
3352
3353     /*!
3354      *  \brief Change orientation of the given object.
3355      *  \param theObject Shape to be processed.
3356      *  \return New GEOM_Object, containing processed shape.
3357      */
3358     GEOM_Object ChangeOrientation (in GEOM_Object theObject);
3359     GEOM_Object ChangeOrientationCopy (in GEOM_Object theObject);
3360
3361     /*!
3362      *  \brief Try to limit tolerance of the given object by value \a theTolerance.
3363      *  \param theObject Shape to be processed.
3364      *  \param theTolerance Required tolerance value.
3365      *  \return New GEOM_Object, containing processed shape.
3366      */
3367     GEOM_Object LimitTolerance (in GEOM_Object theObject, in double theTolerance);
3368
3369   };
3370
3371  // # GEOM_IInsertOperations:
3372   /*!
3373    *  \brief Interface for shape insert operations (like copy, import).
3374    *
3375    */
3376   interface GEOM_IInsertOperations : GEOM_IOperations
3377   {
3378     /*!
3379      *  \brief Create a copy of the given object
3380      */
3381     GEOM_Object MakeCopy (in GEOM_Object theOriginal);
3382
3383     /*!
3384      *  \brief Export the given shape into a file with given name.
3385      *  \param theObject Shape to be stored in the file.
3386      *  \param theFileName Name of the file to store the given shape in.
3387      *  \param theFormatName Specify format for the shape storage.
3388      *         Available formats can be obtained with <VAR>ImportTranslators()</VAR> method.
3389      */
3390     void Export (in GEOM_Object theObject, in string theFileName, in string theFormatName);
3391
3392     /*!
3393      *  \brief Import a shape from the BRep or IGES or STEP file
3394      *  (depends on given format) with given name.
3395      *  \param theFileName The file, containing the shape.
3396      *  \param theFormatName Specify format for the file reading.
3397      *         Available formats can be obtained with <VAR>ImportTranslators()</VAR> method.
3398      *         If format 'IGES_SCALE' is used instead of 'IGES' or
3399      *            format 'STEP_SCALE' is used instead of 'STEP',
3400      *            file length unit will be ignored (set to 'meter') and result model will be scaled.
3401      *  \return New GEOM_Object, containing the imported shape.
3402      */
3403     GEOM_Object ImportFile (in string theFileName, in string theFormatName);
3404
3405     /*!
3406      *  \brief Read a value of parameter from a file, containing a shape.
3407      *  \param theFileName The file, containing the shape.
3408      *  \param theFormatName Specify format for the file reading.
3409      *         Available formats can be obtained with <VAR>ImportTranslators()</VAR> method.
3410      *  \param theParameterName Specify the parameter. For example, pass "LEN_UNITS"
3411      *                          to obtain length units, in which the file is written.
3412      *  \return Value of requested parameter in form of text string.
3413      */
3414     string ReadValue (in string theFileName, in string theFormatName, in string theParameterName);
3415
3416     /*!
3417      *  \brief Get the supported import formats and corresponding patterns for File dialog.
3418      *  \param theFormats Output. List of formats, available for import.
3419      *  \param thePatterns Output. List of file patterns, corresponding to available formats.
3420      *  \return Returns available formats and patterns through the arguments.
3421      */
3422     void ImportTranslators (out string_array theFormats,
3423                             out string_array thePatterns);
3424
3425     /*!
3426      *  \brief Get the supported export formats and corresponding patterns for File dialog.
3427      *  \param theFormats Output. List of formats, available for export.
3428      *  \param thePatterns Output. List of file patterns, corresponding to available formats.
3429      *  \return Returns available formats and patterns through the arguments.
3430      */
3431     void ExportTranslators (out string_array theFormats,
3432                             out string_array thePatterns);
3433
3434     /*!
3435      *  \brief Read a shape from the binary stream, containing its bounding representation (BRep).
3436      *  \note GEOM_Object::GetShapeStream() method can be used to obtain the shape's BRep stream.
3437      *  \param theStream The BRep binary stream.
3438      *  \return New GEOM_Object, containing the shape, read from theStream.
3439      */
3440     GEOM_Object RestoreShape (in SALOMEDS::TMPFile theStream);
3441
3442     /*!
3443      * \brief Load texture from file
3444      * \param theTextureFile texture file name
3445      * \return unique texture identifier
3446      */
3447     long LoadTexture(in string theTextureFile);
3448
3449     /*!
3450      * \brief Add texture to the study
3451      * \param theWidth texture width in pixels
3452      * \param theHeight texture height in pixels
3453      * \param theTexture texture byte array
3454      * \return unique texture identifier
3455      */
3456     long AddTexture(in long theWidth, in long theHeight, in SALOMEDS::TMPFile theTexture);
3457
3458     /*!
3459      * \brief Get previously loaded texture data
3460      * \param theID texture identifier
3461      * \param theWidth texture width in pixels
3462      * \param theHeight texture height in pixels
3463      * \return texture byte array
3464      */
3465     SALOMEDS::TMPFile GetTexture(in long theID, out long theWidth, out long theHeight);
3466
3467     /*!
3468      * \brief Get list of all avaiable texture IDs
3469      * \return list of all texture IDs avaiable for the current study
3470      */
3471     ListOfLong GetAllTextures();
3472   };
3473
3474  // # GEOM_IKindOfShape:
3475   /*!
3476    *  \brief Interface for shape_kind enumeration.
3477    */
3478   interface GEOM_IKindOfShape
3479   {
3480     enum shape_kind {
3481       NO_SHAPE,
3482       //COMPOSITEs
3483       COMPOUND,
3484       COMPSOLID,
3485       SHELL,
3486       WIRE,
3487       // SOLIDs
3488       /*! full sphere */
3489       SPHERE,
3490       /*! cylinder */
3491       CYLINDER,
3492       /*! box with faces, parallel to global coordinate planes */
3493       BOX,
3494       /*! other box */
3495       ROTATED_BOX, 
3496       /*! full torus */
3497       TORUS,   
3498       /*! cone */  
3499       CONE,   
3500       /*! solid, bounded by polygons */
3501       POLYHEDRON,  
3502       /*! other solid */
3503       SOLID,       
3504       // FACEs
3505       /*! spherical face (closed) */
3506       SPHERE2D,    
3507       /*! cylindrical face with defined height */
3508       CYLINDER2D,
3509       /*! toroidal face (closed) */
3510       TORUS2D,     
3511       /*! conical face with defined height */
3512       CONE2D,
3513       /*! planar, bounded by circle */
3514       DISK_CIRCLE,
3515       /*! planar, bounded by ellipse */
3516       DISK_ELLIPSE,
3517       /*! planar, bounded by segments */
3518       POLYGON,     
3519       /*! infinite planar */
3520       PLANE,        
3521        /*! other planar */
3522       PLANAR,      
3523       /*! other face */
3524       FACE,      
3525       // EDGEs
3526       /*! full circle */
3527       CIRCLE,      
3528       /*! arc of circle */
3529       ARC_CIRCLE, 
3530       /*! full ellipse */
3531       ELLIPSE,    
3532       /*! arc of ellipse */
3533       ARC_ELLIPSE,  
3534       /*! infinite segment */
3535       LINE,         
3536       /*! segment */
3537       SEGMENT,      
3538       /*! other edge */
3539       EDGE,       
3540       // VERTEX
3541       VERTEX,
3542       // ADVANCED shapes
3543       /*! all advanced shapes (temporary implementation) */
3544       ADVANCED    
3545     };
3546   };
3547
3548  // # GEOM_IMeasureOperations:
3549   /*!
3550    *  \brief Interface for measurement (distance, whatis) and
3551    *  properties calculation (like Centre of Mass, Inertia, etc.).
3552    *
3553    */
3554   interface GEOM_IMeasureOperations : GEOM_IOperations
3555   {
3556     /*!
3557      *  \brief Get kind of theShape.
3558      *  \param theShape Shape to get a kind of.
3559      *  \param theIntegers Output. Integer and enumerated shape's parameters
3560      *                     (kind of surface, closed/unclosed, number of edges, etc.)
3561      *  \param theDoubles  Output. Double shape's parameters (coordinates, dimensions, etc.)
3562      *  \note  Concrete meaning of each value, returned via \a theIntegers
3563      *         or \a theDoubles list depends on the kind of the shape.
3564      *  \return Returns a kind of shape in terms of <VAR>GEOM_IKindOfShape.shape_kind</VAR> enumeration.
3565      */
3566     //short KindOfShape (in GEOM_Object   theShape,
3567     GEOM_IKindOfShape::shape_kind KindOfShape (in  GEOM_Object  theShape,
3568                                                out ListOfLong   theIntegers,
3569                                                out ListOfDouble theDoubles);
3570
3571     /*!
3572      *  \brief Get position (LCS) of theShape.
3573      *  \param theShape Shape to calculate position of.
3574      *  \param Ox,Oy,Oz Output. Coordinates of shape's location origin.
3575      *                  Origin of the LCS is situated at the shape's center of mass.
3576      *  \param Zx,Zy,Zz Output. Coordinates of shape's location normal(main) direction.
3577      *  \param Xx,Xy,Xz Output. Coordinates of shape's location X direction.
3578      *                  Axes of the LCS are obtained from shape's location or,
3579      *                  if the shape is a planar face, from position of its plane.
3580      *  \return Returns position of the shape through the last nine arguments.
3581      */
3582     void GetPosition (in GEOM_Object theShape,
3583                       out double Ox, out double Oy, out double Oz,
3584                       out double Zx, out double Zy, out double Zz,
3585                       out double Xx, out double Xy, out double Xz);
3586
3587     /*!
3588      *  \brief Get summarized length of all wires,
3589      *  area of surface and volume of the given shape.
3590      *  \param theShape Shape to define properties of.
3591      *  \param theLength Output. Summarized length of all wires of the given shape.
3592      *  \param theSurfArea Output. Area of surface of the given shape.
3593      *  \param theVolume Output. Volume of the given shape.
3594      *  \return Returns shape properties through the last three arguments.
3595      */
3596     void GetBasicProperties (in GEOM_Object theShape,
3597                              out double theLength,
3598                              out double theSurfArea,
3599                              out double theVolume);
3600
3601     /*!
3602      *  \brief Get a point, situated at the centre of mass of theShape.
3603      *  \param theShape Shape to define centre of mass of.
3604      *  \return New GEOM_Object, containing the created point.
3605      */
3606     GEOM_Object GetCentreOfMass (in GEOM_Object theShape);
3607
3608     /*
3609      *  Get the vertex by index for 1D objects depends the edge/wire orientation
3610      *  \param theShape Shape (wire or edge) to find the vertex on it
3611      *  \param theIndex Index of vertex sub-shape
3612      *  \return New GEOM_Object, vertex.
3613      */
3614     GEOM_Object GetVertexByIndex( in GEOM_Object theShape, in long index );
3615
3616     /*!
3617      *  \brief Get a vector, representing the normal of theFace.
3618      *  If the face is not planar, theOptionalPoint is obligatory.
3619      *  \param theFace Shape (face) to define the normal of.
3620      *  \param theOptionalPoint Shape (point) to define the normal at.
3621      *                          Can be NULL in case of planar face.
3622      *  \return New GEOM_Object, containing the created normal vector.
3623      */
3624     GEOM_Object GetNormal (in GEOM_Object theFace,
3625                            in GEOM_Object theOptionalPoint);
3626
3627     /*!
3628      *  \brief Get inertia matrix and moments of inertia of theShape.
3629      *  \param theShape Shape to calculate inertia of.
3630      *  \param I11,I12,I13,I21,I22,I23,I31,I32,I33 Output. Components of the inertia matrix of the given shape.
3631      *  \param Ix,Iy,Iz Output. Moments of inertia of the given shape.
3632      *  \return Returns inertia through the last twelve arguments.
3633      */
3634     void GetInertia (in GEOM_Object theShape,
3635                      out double I11, out double I12, out double I13,
3636                      out double I21, out double I22, out double I23,
3637                      out double I31, out double I32, out double I33,
3638                      out double Ix , out double Iy , out double Iz);
3639
3640     /*!
3641      *  \brief Get parameters of bounding box of the given shape
3642      *  \param theShape Shape to obtain bounding box of.
3643      *  \param precise TRUE for precise computation; FALSE for fast one.
3644      *  \param Xmin,Xmax Output. Limits of shape along OX axis.
3645      *  \param Ymin,Ymax Output. Limits of shape along OY axis.
3646      *  \param Zmin,Zmax Output. Limits of shape along OZ axis.
3647      *  \return Returns parameters of bounding box through the last six arguments.
3648      */
3649     void GetBoundingBox (in GEOM_Object theShape,
3650                          in boolean precise,
3651                          out double Xmin, out double Xmax,
3652                          out double Ymin, out double Ymax,
3653                          out double Zmin, out double Zmax);
3654
3655     /*!
3656      *  \brief Get bounding box of the given shape
3657      *  \param theShape Shape to obtain bounding box of.
3658      *  \param precise TRUE for precise computation; FALSE for fast one.
3659      *  \return New GEOM_Object, containing the created bounding box.
3660      */
3661     GEOM_Object MakeBoundingBox (in GEOM_Object theShape,
3662                                  in boolean precise);
3663
3664     /*!
3665      *  \brief Get min and max tolerances of sub-shapes of theShape
3666      *  \param theShape Shape, to get tolerances of.
3667      *  \param FaceMin,FaceMax Output. Min and max tolerances of the faces.
3668      *  \param EdgeMin,EdgeMax Output. Min and max tolerances of the edges.
3669      *  \param VertMin,VertMax Output. Min and max tolerances of the vertices.
3670      *  \return Returns shape tolerances through the last six arguments.
3671      */
3672     void GetTolerance (in GEOM_Object theShape,
3673                        out double FaceMin, out double FaceMax,
3674                        out double EdgeMin, out double EdgeMax,
3675                        out double VertMin, out double VertMax);
3676
3677     /*!
3678      *  \brief Check a topology of the given shape.
3679      *  \param theShape Shape to check validity of.
3680      *  \param theDescription Output. Description of problems in the shape, if they are.
3681      *  \return TRUE, if the shape "seems to be valid" from the topological point of view.
3682      */
3683     boolean CheckShape (in GEOM_Object theShape,
3684                         out string     theDescription);
3685
3686     /*!
3687      *  \brief Check a topology and a geometry of the given shape.
3688      *  \param theShape Shape to check validity of.
3689      *  \param theDescription Output. Description of problems in the shape, if they are.
3690      *  \return TRUE, if the shape "seems to be valid".
3691      */
3692     boolean CheckShapeWithGeometry (in GEOM_Object theShape,
3693                                     out string     theDescription);
3694
3695     /*!
3696      *  \brief Check a topology of the given shape on self-intersections presence.
3697      *  \param theShape Shape to check validity of.
3698      *  \param theIntersections Output. List of intersected sub-shapes IDs, it contains pairs of IDs.
3699      *  \return TRUE, if the shape does not have any self-intersections.
3700      */
3701     boolean CheckSelfIntersections (in GEOM_Object theShape,
3702                                     out ListOfLong theIntersections);
3703
3704     /*!
3705      *  \brief Check if the given shape can be an argument for MakeSolid operation
3706      *  \param theShape Shape to be described.
3707      *  \return Empty string if a solid can be made on this shape, error code otherwise.
3708      */
3709     string IsGoodForSolid (in GEOM_Object theShape);
3710
3711     /*!
3712      *  O\brief btain description of the given shape
3713      *  \param theShape Shape to be described.
3714      *  \return Description of the given shape.
3715      */
3716     string WhatIs (in GEOM_Object theShape);
3717
3718     /*!
3719      *  \brief Check if points defined by coords = [x1, y1, z1, x2, y2, z2, ...] are inside or on
3720      *  the shape theShape.
3721      *  \param theShape Shape to check.
3722      *  \param coords list of coordinates.
3723      *  \param tolerance tolerance.
3724      *  \return list of boolean.
3725      */
3726     ListOfBool AreCoordsInside(in GEOM_Object theShape, in ListOfDouble coords, in double tolerance);
3727
3728     /*!
3729      *  \brief Get minimal distance between the given shapes.
3730      *  \param theShape1,theShape2 Shapes to find minimal distance between.
3731      *  \param X1,Y1,Z1 Output. Coordinates of point on theShape1, nearest to theShape2.
3732      *  \param X2,Y2,Z2 Output. Coordinates of point on theShape2, nearest to theShape1.
3733      *  \return Value of the minimal distance between the given shapes.
3734      */
3735     double GetMinDistance (in GEOM_Object theShape1, in GEOM_Object theShape2,
3736                            out double X1, out double Y1, out double Z1,
3737                            out double X2, out double Y2, out double Z2);
3738
3739     /*!
3740      *  \brief Get closest points of the given shapes.
3741      *  \param theShape1,theShape2 Shapes to find closest points of.
3742      *  \param theCoords Output. List of (X, Y, Z) coordinates for all couples of points.
3743      *  \return The number of found solutions (-1 in case of infinite number of solutions).
3744      */
3745     long ClosestPoints (in GEOM_Object theShape1,
3746                         in GEOM_Object theShape2,
3747                         out ListOfDouble theCoords);
3748
3749     /*!
3750      *  \brief Get angle between the given lines or linear edges.
3751      *  \param theShape1,theShape2 Shapes to find angle between. Lines or linear edges.
3752      *  \return Value of the angle between the given shapes.
3753      */
3754     double GetAngle (in GEOM_Object theShape1, in GEOM_Object theShape2);
3755
3756     /*!
3757      *  \brief Get angle between the given vectors.
3758      *  \param theShape1,theShape2 Vectors to find angle between.
3759      *  \return Value of the angle between the given vectors.
3760      */
3761     double GetAngleBtwVectors (in GEOM_Object theShape1, in GEOM_Object theShape2);
3762
3763     /*!
3764      *  \brief Get point coordinates
3765      */
3766     void PointCoordinates (in GEOM_Object theShape, out double X, out double Y, out double Z);
3767
3768     /*!
3769      *  \brief Get radius of curvature of curve in the point determinated by param
3770      *  \param theShape - curve.
3771      *  \param theParam - parameter on curve
3772      *  \return Value of curvature.
3773      */
3774     double CurveCurvatureByParam (in GEOM_Object theShape, in double theParam);
3775
3776     /*!
3777      *  \brief Get radius of curvature of curve in the given point
3778      *  \param theShape - curve.
3779      *  \param thePoint - point
3780      *  \return Value of curvature.
3781      */
3782     double CurveCurvatureByPoint (in GEOM_Object theShape, in GEOM_Object thePoint);
3783
3784     /*!
3785      *  \brief Get max radius of curvature of surface in the point determinated by params
3786      *  \param theShape - surface.
3787      *  \param theUParam - U-parameter on surface
3788      *  \param theVParam - V-parameter on surface
3789      *  \return Value of curvature.
3790      */
3791     double MaxSurfaceCurvatureByParam (in GEOM_Object theShape, in double theUParam,
3792                                        in double theVParam);
3793
3794     /*!
3795      *  \brief Get max radius of curvature of surface in the given point
3796      *  \param theShape - surface.
3797      *  \param thePoint - point
3798      *  \return Value of curvature.
3799      */
3800     double MaxSurfaceCurvatureByPoint (in GEOM_Object theShape, in GEOM_Object thePoint);
3801
3802     /*!
3803      *  \brief Get min radius of curvature of surface in the point determinated by params
3804      *  \param theShape - surface.
3805      *  \param theUParam - U-parameter on surface
3806      *  \param theVParam - V-parameter on surface
3807      *  \return Value of curvature.
3808      */
3809     double MinSurfaceCurvatureByParam (in GEOM_Object theShape, in double theUParam,
3810                                        in double theVParam);
3811
3812     /*!
3813      *  \brief Get min radius of curvature of surface in the given point
3814      *  \param theShape - surface.
3815      *  \param thePoint - point
3816      *  \return Value of curvature.
3817      */
3818     double MinSurfaceCurvatureByPoint (in GEOM_Object theShape, in GEOM_Object thePoint);
3819
3820   };
3821
3822  // # GEOM_IGroupOperations:
3823   /*!
3824    *  \brief Interface for groups creation.
3825    */
3826   interface GEOM_IGroupOperations : GEOM_IOperations
3827   {
3828     /*!
3829      *  \brief Creates a new group which will store  sub-shapes of theMainShape
3830      *  \param theMainShape is a GEOM_Object on which the group is selected
3831      *  \param theShapeType defines a shape type of the group
3832      *  \return a newly created GEOM group
3833      */
3834     GEOM_Object CreateGroup (in GEOM_Object theMainShape, in long theShapeType);
3835
3836     /*!
3837      *  \brief Adds a sub-object with ID theSubShapeId to the group
3838      *  \param theGroup is a GEOM group to which the new sub-shape is added
3839      *  \param theSubShapeId is a sub-shape ID in the main object.
3840      *  \note Use method <VAR>GEOM_IShapesOperations.GetSubShapeIndex()</VAR> to get an ID by the sub-shape
3841      */
3842     void AddObject (in GEOM_Object theGroup, in long theSubShapeId);
3843
3844     /*!
3845      *  \brief Removes a sub-object with ID \a theSubShapeId from the group
3846      *  \param theGroup is a GEOM group from which the sub-shape is removed.
3847      *  \param theSubShapeId is a sub-shape ID in the main object.
3848      *  \note Use method <VAR>GEOM_IShapesOperations.GetSubShapeIndex()</VAR> to get an ID by the sub-shape
3849      */
3850     void RemoveObject (in GEOM_Object theGroup, in long theSubShapeId);
3851
3852     /*!
3853      *  \brief Adds to the group all the given shapes. No errors, if some shapes are alredy included.
3854      *  \param theGroup is a GEOM group to which the new sub-shapes are added.
3855      *  \param theSubShapes is a list of sub-shapes to be added.
3856      */
3857     void UnionList (in GEOM_Object theGroup, in ListOfGO theSubShapes);
3858
3859     /*!
3860      *  \brief Removes from the group all the given shapes. No errors, if some shapes are not included.
3861      *  \param theGroup is a GEOM group from which the sub-shapes are removed.
3862      *  \param theSubShapes is a list of sub-shapes to be removed.
3863      */
3864     void DifferenceList (in GEOM_Object theGroup, in ListOfGO theSubShapes);
3865
3866     /*!
3867      *  \brief Adds to the group all the given shapes. No errors, if some shapes are alredy included.
3868      *  \param theGroup is a GEOM group to which the new sub-shapes are added.
3869      *  \param theSubShapes is a list of IDs of sub-shapes to be added.
3870      */
3871     void UnionIDs (in GEOM_Object theGroup, in ListOfLong theSubShapes);
3872
3873     /*!
3874      *  \brief Removes from the group all the given shapes. No errors, if some shapes are not included.
3875      *  \param theGroup is a GEOM group from which the sub-shapes are removed.
3876      *  \param theSubShapes is a list of IDs of sub-shapes to be removed.
3877      */
3878     void DifferenceIDs (in GEOM_Object theGroup, in ListOfLong theSubShapes);
3879
3880     /*!
3881      *  \brief Union of two groups.
3882      *  New group is created. It will contain all entities
3883      *  which are present in groups theGroup1 and theGroup2.
3884      *  \param theGroup1, theGroup2 are the initial GEOM groups
3885      *                              to create the united group from.
3886      *  \return a newly created GEOM group.
3887      */
3888     GEOM_Object UnionGroups (in GEOM_Object theGroup1, in GEOM_Object theGroup2);
3889
3890     /*!
3891      *  \brief Intersection of two groups.
3892      *  New group is created. It will contain only those entities
3893      *  which are present in both groups theGroup1 and theGroup2.
3894      *  \param theGroup1, theGroup2 are the initial GEOM groups to get common part of.
3895      *  \return a newly created GEOM group.
3896      */
3897     GEOM_Object IntersectGroups (in GEOM_Object theGroup1, in GEOM_Object theGroup2);
3898
3899     /*!
3900      *  \brief Cut of two groups.
3901      *  New group is created. It will contain entities which are
3902      *  present in group theGroup1 but are not present in group theGroup2.
3903      *  \param theGroup1 is a GEOM group to include elements of.
3904      *  \param theGroup2 is a GEOM group to exclude elements of.
3905      *  \return a newly created GEOM group.
3906      */
3907     GEOM_Object CutGroups (in GEOM_Object theGroup1, in GEOM_Object theGroup2);
3908
3909     /*!
3910      *  \brief Union of list of groups.
3911      *  New group is created. It will contain all entities that are
3912      *  present in groups listed in theGList.
3913      *  \param theGList is a list of GEOM groups to create the united group from.
3914      *  \return a newly created GEOM group.
3915      */
3916     GEOM_Object UnionListOfGroups (in ListOfGO theGList);
3917
3918     /*!
3919      *  \brief Intersection of list of groups.
3920      *  New group is created. It will contain only entities
3921      *  which are simultaneously present in the groups listed in theGList.
3922      *  \param theGList is a list of GEOM groups to get common part of.
3923      *  \return a newly created GEOM group.
3924      */
3925     GEOM_Object IntersectListOfGroups (in ListOfGO theGList);
3926
3927     /*!
3928      *  \brief Cut of lists of groups.
3929      *  New group is created. It will contain only entities
3930      *  which are present in groups listed in theGList1 but 
3931      *  are not present in groups from theGList2.
3932      *  \param theGList1 is a list of GEOM groups to include elements of.
3933      *  \param theGList2 is a list of GEOM groups to exclude elements of.
3934      *  \return a newly created GEOM group.
3935      */
3936     GEOM_Object CutListOfGroups (in ListOfGO theGList1,
3937                                  in ListOfGO theGList2);
3938
3939     /*!
3940      *  \brief Returns a type of sub-objects stored in the group
3941      *  \param theGroup is a GEOM group which type is returned.
3942      */
3943     long GetType (in GEOM_Object theGroup);
3944
3945     /*!
3946      *  \brief Returns a main shape associated with the group
3947      *  \param theGroup is a GEOM group for which a main shape object is requested
3948      *  \return a GEOM_Object which is a main shape for theGroup
3949      */
3950     GEOM_Object GetMainShape (in GEOM_Object theGroup);
3951
3952     /*!
3953      *  \brief Returns a list of sub-objects ID stored in the group
3954      *  \param theGroup is a GEOM group for which a list of IDs is requested
3955      */
3956     ListOfLong GetObjects (in GEOM_Object theGroup);
3957   };
3958
3959  // # GEOM_IAdvancedOperations:
3960   /*!
3961    *  \brief Interface for advanced modeling functions.
3962    */
3963   interface GEOM_IAdvancedOperations : GEOM_IOperations
3964   {
3965     // T-Shape WITHOUT Thickness reduction
3966
3967     /*!
3968      *  \brief Create a T-shape object with specified caracteristics for the main and
3969      *  the incident pipes (radius, width, half-length).
3970      *
3971      *  Center of the shape is (0,0,0). The main plane of the T-shape is XOY.
3972      *  \param theR1 Internal radius of main pipe
3973      *  \param theW1 Width of main pipe
3974      *  \param theL1 Half-length of main pipe
3975      *  \param theR2 Internal radius of incident pipe (R2 < R1)
3976      *  \param theW2 Width of incident pipe (R2+W2 < R1+W1)
3977      *  \param theL2 Half-length of incident pipe
3978      *  \param theHexMesh Boolean indicating if shape is prepared for hex mesh (default=true)
3979      *  \return List of GEOM_Object, containing the created shape and propagation groups.
3980      */
3981     ListOfGO MakePipeTShape (in double theR1, in double theW1, in double theL1,
3982                              in double theR2, in double theW2, in double theL2,
3983                              in boolean theHexMesh);
3984     /*!
3985      *  \brief Create a T-shape object with specified caracteristics for the main and
3986      *  the incident pipes (radius, width, half-length).
3987      *
3988      *  The extremities of the main pipe are located on junctions points P1 and P2.
3989      *  The extremity of the incident pipe is located on junction point P3.
3990      *  \param theR1 Internal radius of main pipe
3991      *  \param theW1 Width of main pipe
3992      *  \param theL1 Half-length of main pipe
3993      *  \param theR2 Internal radius of incident pipe (R2 < R1)
3994      *  \param theW2 Width of incident pipe (R2+W2 < R1+W1)
3995      *  \param theL2 Half-length of incident pipe
3996      *  \param theHexMesh Boolean indicating if shape is prepared for hex mesh (default=true)
3997      *  \param theP1 1st junction point of main pipe
3998      *  \param theP2 2nd junction point of main pipe
3999      *  \param theP3 Junction point of incident pipe
4000      *  \return List of GEOM_Object, containing the created shape and propagation groups.
4001      */
4002     ListOfGO MakePipeTShapeWithPosition (in double theR1, in double theW1, in double theL1,
4003                                          in double theR2, in double theW2, in double theL2,
4004                                          in boolean theHexMesh,
4005                                          in GEOM_Object theP1, in GEOM_Object theP2, in GEOM_Object theP3);
4006     /*!
4007      *  \brief Create a T-shape object with specified caracteristics for the main and
4008      *  the incident pipes (radius, width, half-length). A chamfer is created
4009      *  on the junction of the pipes.
4010      *  
4011      *  Center of the shape is (0,0,0). The main plane of the T-shape is XOY.
4012      *  \param theR1 Internal radius of main pipe
4013      *  \param theW1 Width of main pipe
4014      *  \param theL1 Half-length of main pipe
4015      *  \param theR2 Internal radius of incident pipe (R2 < R1)
4016      *  \param theW2 Width of incident pipe (R2+W2 < R1+W1)
4017      *  \param theL2 Half-length of incident pipe
4018      *  \param theH Height of the chamfer.
4019      *  \param theW Width of the chamfer.
4020      *  \param theHexMesh Boolean indicating if shape is prepared for hex mesh (default=true)
4021      *  \return List of GEOM_Object, containing the created shape and propagation groups.
4022      */
4023     ListOfGO MakePipeTShapeChamfer (in double theR1, in double theW1, in double theL1,
4024                                     in double theR2, in double theW2, in double theL2,
4025                                     in double theH, in double theW, in boolean theHexMesh);
4026     /*!
4027      *  \brief Create a T-shape object with specified caracteristics for the main and
4028      *  the incident pipes (radius, width, half-length). 
4029      * 
4030      *  A chamfer is created on the junction of the pipes.
4031      *  The extremities of the main pipe are located on junctions points P1 and P2.
4032      *  The extremity of the incident pipe is located on junction point P3.
4033      *  \param theR1 Internal radius of main pipe
4034      *  \param theW1 Width of main pipe
4035      *  \param theL1 Half-length of main pipe
4036      *  \param theR2 Internal radius of incident pipe (R2 < R1)
4037      *  \param theW2 Width of incident pipe (R2+W2 < R1+W1)
4038      *  \param theL2 Half-length of incident pipe
4039      *  \param theH Height of the chamfer.
4040      *  \param theW Width of the chamfer.
4041      *  \param theHexMesh Boolean indicating if shape is prepared for hex mesh (default=true)
4042      *  \param theP1 1st junction point of main pipe
4043      *  \param theP2 2nd junction point of main pipe
4044      *  \param theP3 Junction point of incident pipe
4045      *  \return List of GEOM_Object, containing the created shape and propagation groups.
4046      */
4047     ListOfGO MakePipeTShapeChamferWithPosition (in double theR1, in double theW1, in double theL1,
4048                                                 in double theR2, in double theW2, in double theL2,
4049                                                 in double theH, in double theW, in boolean theHexMesh,
4050                                                 in GEOM_Object theP1, in GEOM_Object theP2, in GEOM_Object theP3);
4051     /*!
4052      *  \brief Create a T-shape object with specified caracteristics for the main and
4053      *  the incident pipes (radius, width, half-length). 
4054      *
4055      *  A fillet is created on the junction of the pipes.
4056      *  Center of the shape is (0,0,0). The main plane of the T-shape is XOY.
4057      *  \param theR1 Internal radius of main pipe
4058      *  \param theW1 Width of main pipe
4059      *  \param theL1 Half-length of main pipe
4060      *  \param theR2 Internal radius of incident pipe (R2 < R1)
4061      *  \param theW2 Width of incident pipe (R2+W2 < R1+W1)
4062      *  \param theL2 Half-length of incident pipe
4063      *  \param theRF Radius of curvature of fillet.
4064      *  \param theHexMesh Boolean indicating if shape is prepared for hex mesh (default=true)
4065      *  \return List of GEOM_Object, containing the created shape and propagation groups.
4066      */
4067     ListOfGO MakePipeTShapeFillet (in double theR1, in double theW1, in double theL1,
4068                                    in double theR2, in double theW2, in double theL2,
4069                                    in double theRF, in boolean theHexMesh);
4070     /*!
4071      *  \brief Create a T-shape object with specified caracteristics for the main and
4072      *  the incident pipes (radius, width, half-length).
4073      *
4074      *  A fillet is created on the junction of the pipes.
4075      *  The extremities of the main pipe are located on junctions points P1 and P2.
4076      *  The extremity of the incident pipe is located on junction point P3.
4077      *  \param theR1 Internal radius of main pipe
4078      *  \param theW1 Width of main pipe
4079      *  \param theL1 Half-length of main pipe
4080      *  \param theR2 Internal radius of incident pipe (R2 < R1)
4081      *  \param theW2 Width of incident pipe (R2+W2 < R1+W1)
4082      *  \param theL2 Half-length of incident pipe
4083      *  \param theRF Radius of curvature of fillet.
4084      *  \param theHexMesh Boolean indicating if shape is prepared for hex mesh (default=true)
4085      *  \param theP1 1st junction point of main pipe
4086      *  \param theP2 2nd junction point of main pipe
4087      *  \param theP3 Junction point of incident pipe
4088      *  \return List of GEOM_Object, containing the created shape and propagation groups.
4089      */
4090     ListOfGO MakePipeTShapeFilletWithPosition (in double theR1, in double theW1, in double theL1,
4091                                                in double theR2, in double theW2, in double theL2,
4092                                                in double theRF, in boolean theHexMesh,
4093                                                in GEOM_Object theP1, in GEOM_Object theP2, in GEOM_Object theP3);
4094
4095     // T-Shape WITH Thickness reduction
4096
4097     /*!
4098      *  \brief Create a T-shape object with specified caracteristics for the main and
4099      *  the incident pipes (radius, width, half-length).
4100      *
4101      *  Center of the shape is (0,0,0). The main plane of the T-shape is XOY.
4102      *  \param theR1 Internal radius of main pipe
4103      *  \param theW1 Width of main pipe
4104      *  \param theL1 Half-length of main pipe
4105      *  \param theR2 Internal radius of incident pipe (R2 < R1)
4106      *  \param theW2 Width of incident pipe (R2+W2 < R1+W1)
4107      *  \param theL2 Half-length of incident pipe
4108      *
4109      *  \param theRL Internal radius of left thickness reduction
4110      *  \param theWL Width of left thickness reduction
4111      *  \param theLtransL Length of left transition part
4112      *  \param theLthinL Length of left thin part
4113      *
4114      *  \param theRR Internal radius of right thickness reduction
4115      *  \param theWR Width of right thickness reduction
4116      *  \param theLtransR Length of right transition part
4117      *  \param theLthinR Length of right thin part
4118      *
4119      *  \param theRI Internal radius of incident thickness reduction
4120      *  \param theWI Width of incident thickness reduction
4121      *  \param theLtransI Length of incident transition part
4122      *  \param theLthinI Length of incident thin part
4123      *
4124      *  \param theHexMesh Boolean indicating if shape is prepared for hex mesh (default=true)
4125      *  \return List of GEOM_Object, containing the created shape and propagation groups.
4126      */
4127     ListOfGO MakePipeTShapeTR (in double theR1, in double theW1, in double theL1,
4128                                in double theR2, in double theW2, in double theL2,
4129                                in double theRL, in double theWL, in double theLtransL, in double theLthinL,
4130                                in double theRR, in double theWR, in double theLtransR, in double theLthinR,
4131                                in double theRI, in double theWI, in double theLtransI, in double theLthinI,
4132                                in boolean theHexMesh);
4133     /*!
4134      *  \brief Create a T-shape object with specified caracteristics for the main and
4135      *  the incident pipes (radius, width, half-length).
4136      *
4137      *  The extremities of the main pipe are located on junctions points P1 and P2.
4138      *  The extremity of the incident pipe is located on junction point P3.
4139      *  \param theR1 Internal radius of main pipe
4140      *  \param theW1 Width of main pipe
4141      *  \param theL1 Half-length of main pipe
4142      *  \param theR2 Internal radius of incident pipe (R2 < R1)
4143      *  \param theW2 Width of incident pipe (R2+W2 < R1+W1)
4144      *  \param theL2 Half-length of incident pipe
4145      *
4146      *  \param theRL Internal radius of left thickness reduction
4147      *  \param theWL Width of left thickness reduction
4148      *  \param theLtransL Length of left transition part
4149      *  \param theLthinL Length of left thin part
4150      *
4151      *  \param theRR Internal radius of right thickness reduction
4152      *  \param theWR Width of right thickness reduction
4153      *  \param theLtransR Length of right transition part
4154      *  \param theLthinR Length of right thin part
4155      *
4156      *  \param theRI Internal radius of incident thickness reduction
4157      *  \param theWI Width of incident thickness reduction
4158      *  \param theLtransI Length of incident transition part
4159      *  \param theLthinI Length of incident thin part
4160      *
4161      *  \param theHexMesh Boolean indicating if shape is prepared for hex mesh (default=true)
4162      *  \param theP1 1st junction point of main pipe
4163      *  \param theP2 2nd junction point of main pipe
4164      *  \param theP3 Junction point of incident pipe
4165      *  \return List of GEOM_Object, containing the created shape and propagation groups.
4166      */
4167     ListOfGO MakePipeTShapeTRWithPosition
4168                  (in double theR1, in double theW1, in double theL1,
4169                   in double theR2, in double theW2, in double theL2,
4170                   in double theRL, in double theWL, in double theLtransL, in double theLthinL,
4171                   in double theRR, in double theWR, in double theLtransR, in double theLthinR,
4172                   in double theRI, in double theWI, in double theLtransI, in double theLthinI,
4173                   in boolean theHexMesh,
4174                   in GEOM_Object theP1, in GEOM_Object theP2, in GEOM_Object theP3);
4175     /*!
4176      *  \brief Create a T-shape object with specified caracteristics for the main and
4177      *  the incident pipes (radius, width, half-length). A chamfer is created
4178      *  on the junction of the pipes.
4179      *  
4180      *  Center of the shape is (0,0,0). The main plane of the T-shape is XOY.
4181      *  \param theR1 Internal radius of main pipe
4182      *  \param theW1 Width of main pipe
4183      *  \param theL1 Half-length of main pipe
4184      *  \param theR2 Internal radius of incident pipe (R2 < R1)
4185      *  \param theW2 Width of incident pipe (R2+W2 < R1+W1)
4186      *  \param theL2 Half-length of incident pipe
4187      *
4188      *  \param theRL Internal radius of left thickness reduction
4189      *  \param theWL Width of left thickness reduction
4190      *  \param theLtransL Length of left transition part
4191      *  \param theLthinL Length of left thin part
4192      *
4193      *  \param theRR Internal radius of right thickness reduction
4194      *  \param theWR Width of right thickness reduction
4195      *  \param theLtransR Length of right transition part
4196      *  \param theLthinR Length of right thin part
4197      *
4198      *  \param theRI Internal radius of incident thickness reduction
4199      *  \param theWI Width of incident thickness reduction
4200      *  \param theLtransI Length of incident transition part
4201      *  \param theLthinI Length of incident thin part
4202      *
4203      *  \param theH Height of the chamfer.
4204      *  \param theW Width of the chamfer.
4205      *  \param theHexMesh Boolean indicating if shape is prepared for hex mesh (default=true)
4206      *  \return List of GEOM_Object, containing the created shape and propagation groups.
4207      */
4208     ListOfGO MakePipeTShapeTRChamfer
4209                  (in double theR1, in double theW1, in double theL1,
4210                   in double theR2, in double theW2, in double theL2,
4211                   in double theRL, in double theWL, in double theLtransL, in double theLthinL,
4212                   in double theRR, in double theWR, in double theLtransR, in double theLthinR,
4213                   in double theRI, in double theWI, in double theLtransI, in double theLthinI,
4214                   in double theH, in double theW, in boolean theHexMesh);
4215     /*!
4216      *  \brief Create a T-shape object with specified caracteristics for the main and
4217      *  the incident pipes (radius, width, half-length). 
4218      * 
4219      *  A chamfer is created on the junction of the pipes.
4220      *  The extremities of the main pipe are located on junctions points P1 and P2.
4221      *  The extremity of the incident pipe is located on junction point P3.
4222      *  \param theR1 Internal radius of main pipe
4223      *  \param theW1 Width of main pipe
4224      *  \param theL1 Half-length of main pipe
4225      *  \param theR2 Internal radius of incident pipe (R2 < R1)
4226      *  \param theW2 Width of incident pipe (R2+W2 < R1+W1)
4227      *  \param theL2 Half-length of incident pipe
4228      *
4229      *  \param theRL Internal radius of left thickness reduction
4230      *  \param theWL Width of left thickness reduction
4231      *  \param theLtransL Length of left transition part
4232      *  \param theLthinL Length of left thin part
4233      *
4234      *  \param theRR Internal radius of right thickness reduction
4235      *  \param theWR Width of right thickness reduction
4236      *  \param theLtransR Length of right transition part
4237      *  \param theLthinR Length of right thin part
4238      *
4239      *  \param theRI Internal radius of incident thickness reduction
4240      *  \param theWI Width of incident thickness reduction
4241      *  \param theLtransI Length of incident transition part
4242      *  \param theLthinI Length of incident thin part
4243      *
4244      *  \param theH Height of the chamfer.
4245      *  \param theW Width of the chamfer.
4246      *  \param theHexMesh Boolean indicating if shape is prepared for hex mesh (default=true)
4247      *  \param theP1 1st junction point of main pipe
4248      *  \param theP2 2nd junction point of main pipe
4249      *  \param theP3 Junction point of incident pipe
4250      *  \return List of GEOM_Object, containing the created shape and propagation groups.
4251      */
4252     ListOfGO MakePipeTShapeTRChamferWithPosition
4253                  (in double theR1, in double theW1, in double theL1,
4254                   in double theR2, in double theW2, in double theL2,
4255                   in double theRL, in double theWL, in double theLtransL, in double theLthinL,
4256                   in double theRR, in double theWR, in double theLtransR, in double theLthinR,
4257                   in double theRI, in double theWI, in double theLtransI, in double theLthinI,
4258                   in double theH, in double theW, in boolean theHexMesh,
4259                   in GEOM_Object theP1, in GEOM_Object theP2, in GEOM_Object theP3);
4260     /*!
4261      *  \brief Create a T-shape object with specified caracteristics for the main and
4262      *  the incident pipes (radius, width, half-length). 
4263      *
4264      *  A fillet is created on the junction of the pipes.
4265      *  Center of the shape is (0,0,0). The main plane of the T-shape is XOY.
4266      *  \param theR1 Internal radius of main pipe
4267      *  \param theW1 Width of main pipe
4268      *  \param theL1 Half-length of main pipe
4269      *  \param theR2 Internal radius of incident pipe (R2 < R1)
4270      *  \param theW2 Width of incident pipe (R2+W2 < R1+W1)
4271      *  \param theL2 Half-length of incident pipe
4272      *
4273      *  \param theRL Internal radius of left thickness reduction
4274      *  \param theWL Width of left thickness reduction
4275      *  \param theLtransL Length of left transition part
4276      *  \param theLthinL Length of left thin part
4277      *
4278      *  \param theRR Internal radius of right thickness reduction
4279      *  \param theWR Width of right thickness reduction
4280      *  \param theLtransR Length of right transition part
4281      *  \param theLthinR Length of right thin part
4282      *
4283      *  \param theRI Internal radius of incident thickness reduction
4284      *  \param theWI Width of incident thickness reduction
4285      *  \param theLtransI Length of incident transition part
4286      *  \param theLthinI Length of incident thin part
4287      *
4288      *  \param theRF Radius of curvature of fillet.
4289      *  \param theHexMesh Boolean indicating if shape is prepared for hex mesh (default=true)
4290      *  \return List of GEOM_Object, containing the created shape and propagation groups.
4291      */
4292     ListOfGO MakePipeTShapeTRFillet
4293                  (in double theR1, in double theW1, in double theL1,
4294                   in double theR2, in double theW2, in double theL2,
4295                   in double theRL, in double theWL, in double theLtransL, in double theLthinL,
4296                   in double theRR, in double theWR, in double theLtransR, in double theLthinR,
4297                   in double theRI, in double theWI, in double theLtransI, in double theLthinI,
4298                   in double theRF, in boolean theHexMesh);
4299     /*!
4300      *  \brief Create a T-shape object with specified caracteristics for the main and
4301      *  the incident pipes (radius, width, half-length).
4302      *
4303      *  A fillet is created on the junction of the pipes.
4304      *  The extremities of the main pipe are located on junctions points P1 and P2.
4305      *  The extremity of the incident pipe is located on junction point P3.
4306      *  \param theR1 Internal radius of main pipe
4307      *  \param theW1 Width of main pipe
4308      *  \param theL1 Half-length of main pipe
4309      *  \param theR2 Internal radius of incident pipe (R2 < R1)
4310      *  \param theW2 Width of incident pipe (R2+W2 < R1+W1)
4311      *  \param theL2 Half-length of incident pipe
4312      *
4313      *  \param theRL Internal radius of left thickness reduction
4314      *  \param theWL Width of left thickness reduction
4315      *  \param theLtransL Length of left transition part
4316      *  \param theLthinL Length of left thin part
4317      *
4318      *  \param theRR Internal radius of right thickness reduction
4319      *  \param theWR Width of right thickness reduction
4320      *  \param theLtransR Length of right transition part
4321      *  \param theLthinR Length of right thin part
4322      *
4323      *  \param theRI Internal radius of incident thickness reduction
4324      *  \param theWI Width of incident thickness reduction
4325      *  \param theLtransI Length of incident transition part
4326      *  \param theLthinI Length of incident thin part
4327      *
4328      *  \param theRF Radius of curvature of fillet.
4329      *  \param theHexMesh Boolean indicating if shape is prepared for hex mesh (default=true)
4330      *  \param theP1 1st junction point of main pipe
4331      *  \param theP2 2nd junction point of main pipe
4332      *  \param theP3 Junction point of incident pipe
4333      *  \return List of GEOM_Object, containing the created shape and propagation groups.
4334      */
4335     ListOfGO MakePipeTShapeTRFilletWithPosition
4336                  (in double theR1, in double theW1, in double theL1,
4337                   in double theR2, in double theW2, in double theL2,
4338                   in double theRL, in double theWL, in double theLtransL, in double theLthinL,
4339                   in double theRR, in double theWR, in double theLtransR, in double theLthinR,
4340                   in double theRI, in double theWI, in double theLtransI, in double theLthinI,
4341                   in double theRF, in boolean theHexMesh,
4342                   in GEOM_Object theP1, in GEOM_Object theP2, in GEOM_Object theP3);
4343
4344     /*!
4345      *  This function allows to create a disk already divided into blocks. It
4346      *  can be use to create divided pipes for later meshing in hexaedra.
4347      *  \param theR Radius of the disk
4348      *  \param theRatio Relative size of the central square diagonal against the disk diameter
4349      *  \param theOrientation Plane on which the disk will be built
4350      *  \return New GEOM_Object, containing the created shape.
4351      */
4352     GEOM_Object MakeDividedDisk (in double theR, 
4353                                  in double theRatio, 
4354                                  in short theOrientation,
4355                                  in pattern thePattern);
4356
4357     /*!
4358      *  \brief Create a Disk prepared for hexa meshing with given center, normal vector and radius.
4359      *  \param thePnt disk center.
4360      *  \param theVec Vector, normal to the plane of the disk.
4361      *  \param theR Disk radius.
4362      *  \param theRatio Relative size of the central square diagonal against the disk diameter
4363      *  \return New GEOM_Object, containing the created disk.
4364      */
4365     GEOM_Object MakeDividedDiskPntVecR ( in GEOM_Object thePnt,
4366                                          in GEOM_Object theVec,
4367                                          in double theR, 
4368                                          in double theRatio,
4369                                          in pattern thePattern);
4370
4371     /*!
4372      *  Builds a cylinder prepared for hexa meshes
4373      *  \param theR Radius of the cylinder
4374      *  \param theH Height of the cylinder
4375      *  \return New GEOM_Object, containing the created shape.
4376      */
4377     GEOM_Object MakeDividedCylinder (in double theR, 
4378                                      in double theH,
4379                                      in pattern thePattern );
4380
4381     /*@@ insert new functions before this line @@ do not remove this line @@*/
4382   };
4383
4384  // # GEOM_Gen:
4385   /*!
4386    *  \brief Interface to access other GEOM interfaces.
4387    *
4388    *  Also contains some methods to access and manage GEOM_Object.
4389    */
4390   interface GEOM_Gen : Engines::EngineComponent,SALOMEDS::Driver
4391   {
4392     /*!
4393      *  \brief Undo/Redo Management
4394      */
4395
4396     void Undo (in long theStudyID);
4397
4398     void Redo (in long theStudyID);
4399
4400     /*!
4401      * \brief Publishing management
4402      *
4403      * Adds in theStudy a object theObject under with a name theName,
4404      * if theFather is not NULL the object is placed under thFather's SObject.
4405      * Returns a SObject where theObject is placed
4406      */
4407     SALOMEDS::SObject AddInStudy (in SALOMEDS::Study theStudy,
4408                                   in GEOM_Object theObject,
4409                                   in string theName,
4410                                   in GEOM_Object theFather);
4411
4412     /*!
4413      *  \brief Publish sub-shapes, standing for arguments and sub-shapes of arguments
4414      *
4415      *  To be used from python scripts out of geompy.addToStudy (non-default usage)
4416      *  \param theStudy  the study, in which theObject is published already,
4417      *                   and in which the arguments will be published
4418      *  \param theObject published GEOM_Object, arguments of which will be published
4419      *  \param theArgs   list of GEOM_Object, operation arguments to be published.
4420      *                   If this list is empty, all operation arguments will be published
4421      *  \param theFindMethod method to search sub-shapes, corresponding to arguments and
4422      *                       their sub-shapes. Value from enumeration GEOM::find_shape_method.
4423      *  \param theInheritFirstArg set properties of the first argument for \a theObject.
4424      *                            Do not publish sub-shapes in place of arguments, but only
4425      *                            in place of sub-shapes of the first argument,
4426      *                            because the whole shape corresponds to the first argument.
4427      *                            Mainly to be used after transformations, but it also can be
4428      *                            usefull after partition with one object shape, and some other
4429      *                            operations, where only the first argument has to be considered.
4430      *                            If theObject has only one argument shape, this flag is automatically
4431      *                            considered as True, not regarding really passed value.
4432      *  \param theAddPrefix add prefix "from_" to names of restored sub-shapes,
4433      *                      and prefix "from_subshapes_of_" to names of partially restored sub-shapes.
4434      *  \return list of published sub-shapes
4435      */
4436     ListOfGO RestoreSubShapesO (in SALOMEDS::Study   theStudy,
4437                                 in GEOM_Object       theObject,
4438                                 in ListOfGO          theArgs,
4439                                 in find_shape_method theFindMethod,
4440                                 in boolean           theInheritFirstArg,
4441                                 in boolean           theAddPrefix);
4442
4443     /*!
4444      *  \brief Publish sub-shapes, standing for arguments and sub-shapes of arguments
4445      *
4446      *  To be used from python scripts out of geompy.addToStudy (non-default usage)
4447      *  \param theStudy  the study, in which theObject is published already,
4448      *                   and in which the arguments will be published
4449      *  \param theObject published GEOM_Object, arguments of which will be published
4450      *  \param theArgs   list of GEOM_Object, operation arguments to be published.
4451      *                   If this list is empty, all operation arguments will be published
4452      *  \param theFindMethod method to search sub-shapes, corresponding to arguments and
4453      *                       their sub-shapes. Value from enumeration GEOM::find_shape_method.
4454      *  \param theInheritFirstArg set properties of the first argument for \a theObject.
4455      *                            Do not publish sub-shapes in place of arguments, but only
4456      *                            in place of sub-shapes of the first argument,
4457      *                            because the whole shape corresponds to the first argument.
4458      *                            Mainly to be used after transformations, but it also can be
4459      *                            usefull after partition with one object shape, and some other
4460      *                            operations, where only the first argument has to be considered.
4461      *                            If theObject has only one argument shape, this flag is automatically
4462      *                            considered as True, not regarding really passed value.
4463      *  \param theAddPrefix add prefix "from_" to names of restored sub-shapes,
4464      *                      and prefix "from_subshapes_of_" to names of partially restored sub-shapes.
4465      *  \return list of published sub-shapes
4466      */
4467     ListOfGO RestoreGivenSubShapesO (in SALOMEDS::Study   theStudy,
4468                                      in GEOM_Object       theObject,
4469                                      in ListOfGO          theArgs,
4470                                      in find_shape_method theFindMethod,
4471                                      in boolean           theInheritFirstArg,
4472                                      in boolean           theAddPrefix);
4473
4474     /*!
4475      *  \brief Publish sub-shapes, standing for arguments and sub-shapes of arguments
4476      *
4477      *  To be used from GUI and from geompy.addToStudy.
4478      *  Work like the above method, but accepts study object theSObject instead of GEOM_Object.
4479      *  \param theStudy  the study, in which theObject is published already,
4480      *                   and in which the arguments will be published
4481      *  \param theSObject study object, referencing GEOM_Object, arguments of which will be published
4482      *  \param theArgs   list of GEOM_Object, operation arguments to be published.
4483      *                   If this list is empty, all operation arguments will be published
4484      *  \param theFindMethod method to search sub-shapes, corresponding to arguments and
4485      *                       their sub-shapes. Value from enumeration GEOM::find_shape_method.
4486      *  \param theInheritFirstArg set properties of the first argument for \a theObject.
4487      *                            Do not publish sub-shapes in place of arguments, but only
4488      *                            in place of sub-shapes of the first argument,
4489      *                            because the whole shape corresponds to the first argument.
4490      *                            Mainly to be used after transformations, but it also can be
4491      *                            usefull after partition with one object shape, and some other
4492      *                            operations, where only the first argument has to be considered.
4493      *                            If theObject has only one argument shape, this flag is automatically
4494      *                            considered as True, not regarding really passed value.
4495      *  \param theAddPrefix add prefix "from_" to names of restored sub-shapes,
4496      *                      and prefix "from_subshapes_of_" to names of partially restored sub-shapes.
4497      */
4498     ListOfGO RestoreSubShapesSO (in SALOMEDS::Study   theStudy,
4499                                  in SALOMEDS::SObject theSObject,
4500                                  in ListOfGO          theArgs,
4501                                  in find_shape_method theFindMethod,
4502                                  in boolean           theInheritFirstArg,
4503                                  in boolean           theAddPrefix);
4504
4505    // #  Methods to access interfaces for objects creation and transformation
4506     
4507     GEOM_IBasicOperations     GetIBasicOperations    (in long theStudyID) raises (SALOME::SALOME_Exception);
4508     GEOM_ITransformOperations GetITransformOperations(in long theStudyID) raises (SALOME::SALOME_Exception);
4509     GEOM_I3DPrimOperations    GetI3DPrimOperations   (in long theStudyID) raises (SALOME::SALOME_Exception);
4510     GEOM_IShapesOperations    GetIShapesOperations   (in long theStudyID) raises (SALOME::SALOME_Exception);
4511     GEOM_IBooleanOperations   GetIBooleanOperations  (in long theStudyID) raises (SALOME::SALOME_Exception);
4512     GEOM_ICurvesOperations    GetICurvesOperations   (in long theStudyID) raises (SALOME::SALOME_Exception);
4513     GEOM_ILocalOperations     GetILocalOperations    (in long theStudyID) raises (SALOME::SALOME_Exception);
4514     GEOM_IHealingOperations   GetIHealingOperations  (in long theStudyID) raises (SALOME::SALOME_Exception);
4515     GEOM_IInsertOperations    GetIInsertOperations   (in long theStudyID) raises (SALOME::SALOME_Exception);
4516     GEOM_IMeasureOperations   GetIMeasureOperations  (in long theStudyID) raises (SALOME::SALOME_Exception);
4517     GEOM_IBlocksOperations    GetIBlocksOperations   (in long theStudyID) raises (SALOME::SALOME_Exception);
4518     GEOM_IGroupOperations     GetIGroupOperations    (in long theStudyID) raises (SALOME::SALOME_Exception);
4519     GEOM_IAdvancedOperations  GetIAdvancedOperations (in long theStudyID) raises (SALOME::SALOME_Exception);
4520
4521   //  # Objects Management
4522      
4523
4524     /*!
4525      *  \brief Removes the object from the GEOM component
4526      *  \param theObject is a GEOM_Object to be removed
4527      */
4528     void RemoveObject (in GEOM_Object theObject);
4529
4530     /*!
4531      *  \brief Returns an object defined by the study and its entry in the GEOM component
4532      *  \param theStudyID is a SALOMEDS Study ID
4533      *  \param theEntry is an entry of the requested GEOM_Object in the GEOM component
4534      *  \note if the object has not previously been created a NULL GEOM_Object is returned
4535      */
4536     GEOM_Object GetObject (in long theStudyID, in string theEntry);
4537
4538     /*!
4539      *  \brief Add a sub-shape defined by indices in \a theIndices
4540      *  (contains unique IDs of sub-shapes inside \a theMainShape)
4541      *  \note The sub-shape GEOM_Object can has ONLY ONE function.
4542      *        Don't try to apply modification operations on them.
4543      *  \note Internal method
4544      */
4545     GEOM_Object AddSubShape (in GEOM_Object theMainShape, in ListOfLong theIndices);
4546
4547  // #  GEOM_Objects IOR Management
4548     
4549     /*!
4550      *  \brief Returns a GEOM_Object defined by its IOR
4551      *  \param theIOR a string containg an IOR of the requested GEOM_Object
4552      */
4553     GEOM_Object GetIORFromString (in string theIOR);
4554
4555     /*!
4556      *  \brief Returns a string which contains an IOR of the GEOM_Object
4557      *  \param theObject is a GEOM_Object which IOR is requested
4558      */
4559     string GetStringFromIOR (in GEOM_Object theObject);
4560
4561     /*!
4562      *  \brief Returns a name with which a GEOM_Object was dumped into python script
4563      *  \param theStudyEntry is an entry of the GEOM_Object in the study
4564      */
4565     string GetDumpName (in string theStudyEntry);
4566
4567     /*!
4568      *  \brief Returns all names with which a GEOM_Object was dumped
4569      *  into python script to avoid the same names in SMESH script
4570      */
4571     string_array GetAllDumpNames();
4572
4573     /*!
4574      *  \brief Publishes the named sub-shapes of given object in the study.
4575      *  \param theStudy    The study in which the object is published
4576      *  \param theObject   The object which named sub-shapes are published
4577      */
4578     ListOfGO PublishNamedShapesInStudy(in SALOMEDS::Study theStudy,
4579                                        //in SObject theSObject,
4580                                        in Object theObject);
4581   };
4582 };
4583
4584 #endif