]> SALOME platform Git repositories - modules/geom.git/blob - idl/GEOM_Gen.idl
Salome HOME
0016562: EDF 508 GEOM: Link the sketcher and the WP/LCS
[modules/geom.git] / idl / GEOM_Gen.idl
1 //  Copyright (C) 2007-2008  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    *  Topological types of shapes (like Open Cascade types)
39    */
40   enum shape_type { COMPOUND, COMPSOLID, SOLID, SHELL,
41                     FACE, WIRE, EDGE, VERTEX, SHAPE };
42
43
44   /*!
45    *  State of shape relatively geometrical surface like plane, sphere or cylinder.
46    *  Is used in functions GEOM_IShapesOperations.GetShapesOn<xxx>()
47    */
48   enum shape_state
49   {
50     /*! Shape is on surface */
51     ST_ON,
52
53     /*!
54      *  Shape is in the direction defined by the normal and not on surface.
55      *  For plane it means above the plane,
56      *  For sphere and cylinder it means outside of volume, bounded by the surface.
57      */
58     ST_OUT,
59
60     /*!
61      *  Shape is in the direction defined by the normal and on surface.
62      *  ONOUT = ON || OUT
63      */
64     ST_ONOUT,
65
66     /*!
67      *  Complementary to ONOUT.
68      *  For plane it means below the plane,
69      *  For sphere and cylinder it means inside the volume, bounded by the surface
70      *  (beyond axis and surface for cylinder and beyond cented and surface for sphere).
71      */
72     ST_IN,
73
74     /*!
75      *  Complementary to OUT.
76      *  ONIN = ON || IN
77      */
78     ST_ONIN
79   };
80
81   /*!
82    *  Kind of method to find inside one main shape some subshapes,
83    *  corresponding to other given shape (its argument)
84    *  Is used in functions GEOM_Gen.RestoreSubShapes<xxx>()
85    */
86   enum find_shape_method
87   {
88     /*! Use GetInPlace functionality. Suits all cases, except transformations */
89     FSM_GetInPlace,
90
91     /*! To be used only for transformation result, to find subshapes of argument.
92      *  Only this method can be used after transformation.
93      */
94     FSM_Transformed,
95
96     /*! To find only shared subshapes, not modified by the operation */
97     FSM_GetSame,
98
99     /*! Use GetShapesOnShape method (can work only on solids) */
100     FSM_GetShapesOnShape,
101
102     /*! Use GetInPlaceByHistory method (can work only after Partition) */
103     FSM_GetInPlaceByHistory
104   };
105
106
107   typedef sequence<string>      string_array;
108   typedef sequence<short>       short_array;
109   typedef sequence<long>        ListOfLong;
110   typedef sequence<double>      ListOfDouble;
111
112   interface GEOM_Object;
113
114   typedef sequence<GEOM_Object> ListOfGO;
115
116   /*!
117    *  GEOM_Object: interface of geometric object
118    */
119   interface GEOM_Object : SALOME::GenericObj
120   {
121
122     /*!
123      *  Get an entry of the object in GEOM component.
124      */
125     string GetEntry();
126
127     /*!
128      *  Get ID of study, where the object is created.
129      */
130     long GetStudyID();
131
132     /*!
133      *  Get internal type of the object (POINT, BOX, CYLINDER, EXTRUSION...).
134      */
135     long GetType();
136
137     /*!
138      *  Get a <VAR>shape_type</VAR> of the object value.
139      */
140     shape_type GetShapeType();
141
142     /*!
143      *  Set name of the object.
144      *  \param theName is a name which will be associated with this object.
145      */
146     void SetName (in string theName);
147
148     /*!
149      *  Get name of the object associated with this object.
150      */
151     string GetName();
152
153     /*!
154      *  Set color of the object.
155      *  \param theColor is a color of the object.
156      */
157     void SetColor(in SALOMEDS::Color theColor);
158
159     /*!
160      *  Get color of the object.
161      */
162     SALOMEDS::Color GetColor();
163
164     /*!
165      *  Toggle auto color mode on the object.
166      *  \param theAtoColor is a flag which toggles auto color mode.
167      */
168     void SetAutoColor(in boolean theAutoColor);
169
170     /*!
171      *  Get flag of object's auto color mode.
172      */
173     boolean GetAutoColor();
174
175     /*!
176      *  Set a Study entry where this object was published.
177      */
178     void SetStudyEntry (in string theEntry);
179
180     /*!
181      *  Get a Study entry where this object was published.
182      */
183     string GetStudyEntry();
184
185     /*!
186      *  Get a list of all GEOM objects on which were the arguments
187      *  when this object was constructed and modified.
188      *  \note This method is supposed to be used by GUI only.
189      */
190     ListOfGO GetDependency();
191
192     /*!
193      *  Get a list of GEOM objects on which the last function that created or modified the object depends.
194      *  \note This method is supposed to be used by GUI only.
195      */
196     ListOfGO GetLastDependency();
197
198     /*!
199      *  Get the TopoDS_Shape, for colocated case only.
200      */
201     long long getShape();
202
203     /*!
204      ######################################################################
205      *  Internal methods (For sub shape identification)
206      ######################################################################
207      */
208
209     /*!
210      *  Get geometric shape of the object as a byte stream
211      */
212     SALOMEDS::TMPFile GetShapeStream();
213
214     /*
215      *  Returns True if this object is not a sub shape of another object.
216      */
217     boolean IsMainShape();
218
219     /*
220      *  Get a list of ID's of sub shapes in the main shape.
221      *  \note Internal method, suppopsed to be used only by GEOM_Client
222      */
223     ListOfLong GetSubShapeIndices();
224
225     /*
226      *  Get a main shape object to which this object is a sub shape
227      *  \note Internal method, suppopsed to be used only by GEOM_Client
228      */
229     GEOM_Object GetMainShape();
230
231     /*
232      *  Return true if geom object representes a shape.
233      *  For example, method return false for GEOM_MARKER
234      */
235      boolean IsShape();
236
237      /*!
238      *  Set list of parameters
239      *  \param theParameters is a string containing the notebook variables separated by ":" symbol,
240      *         used for object creation
241      */
242     void SetParameters (in string theParameters);
243                             
244     /*!
245      *  Return list of notebook variables used for object creation separated by ":" symbol
246      */
247     string GetParameters();
248   };
249
250
251   /*!
252    *  GEOM_IOperations: basic methods of all geometric operations
253    */
254   interface GEOM_IOperations : SALOME::GenericObj
255   {
256     /*!
257      *  To know, if the operation was successfully performed
258      */
259     boolean IsDone();
260
261     /*!
262      *  Set the operation error code
263      *  \param theErrorID is a string describing the error occured
264      *  \note This method is supposed to be used only by interfaces inheriting from IOperations.
265      */
266     void SetErrorCode (in string theErrorID);
267
268     /*!
269      *  Get the operation error code
270      */
271     string GetErrorCode();
272
273     /*!
274      *  Get ID of study, where the operation is defined
275      */
276     long GetStudyID();
277
278     /*!
279      *  Opens a new transaction
280      */
281     void StartOperation();
282
283     /*!
284      *  Closes the previously opened trasaction
285      */
286     void FinishOperation();
287
288     /*!
289      *  Aborts the previously opened transaction
290      */
291     void AbortOperation();
292   };
293
294   /*!
295    *  GEOM_IBasicOperations: interface for basic geometry creation
296    *  (Point, Vector, Plane, Marker)
297    */
298   interface GEOM_IBasicOperations : GEOM_IOperations
299   {
300     /*!
301      *  Create point by three coordinates.
302      *  \param theX The X coordinate of the point.
303      *  \param theY The Y coordinate of the point.
304      *  \param theZ The Z coordinate of the point.
305      *  \return New GEOM_Object, containing the created point.
306      */
307     GEOM_Object MakePointXYZ (in double theX, in double theY, in double theZ);
308
309     /*!
310      *  Create a point, distant from the referenced point
311      *  on the given distances along the coordinate axes.
312      *  \param theReference The referenced point.
313      *  \param theX Displacement from the referenced point along OX axis.
314      *  \param theY Displacement from the referenced point along OY axis.
315      *  \param theZ Displacement from the referenced point along OZ axis.
316      *  \return New GEOM_Object, containing the created point.
317      */
318     GEOM_Object MakePointWithReference (in GEOM_Object theReference,
319                                         in double theX, in double theY, in double theZ);
320
321     /*!
322      *  Create a point, corresponding to the given parameter on the given curve.
323      *  \param theRefCurve The referenced curve.
324      *  \param theParameter Value of parameter on the referenced curve.
325      *  \return New GEOM_Object, containing the created point.
326      */
327     GEOM_Object MakePointOnCurve (in GEOM_Object theRefCurve,
328                                   in double theParameter);
329
330     /*!
331      *  Create a point, corresponding to the given parameters on the
332      *    given surface.
333      *  \param theRefSurf The referenced surface.
334      *  \param theUParameter Value of U-parameter on the referenced surface.
335      *  \param theVParameter Value of V-parameter on the referenced surface.
336      *  \return New GEOM_Object, containing the created point.
337      */
338     GEOM_Object MakePointOnSurface (in GEOM_Object theRefSurf,
339                                     in double theUParameter,
340                                     in double theVParameter);
341
342     /*!
343      *  Create a point, on two lines intersection.
344      *  \param theRefLine1, theRefLine2 The referenced lines.
345      *  \return New GEOM_Object, containing the created point.
346      */
347     GEOM_Object MakePointOnLinesIntersection (in GEOM_Object theRefLine1,
348                                               in GEOM_Object theRefLine2);
349
350      /*!
351      *  Create a vector, corresponding to tangent to the given parameter on the given curve.
352      *  \param theRefCurve The referenced curve.
353      *  \param theParameter Value of parameter on the referenced curve.This value should be have value
354      *  \between 0. and 1.. Value of 0. corresponds first parameter of curve value 1. corresponds
355      *  \last parameter of curve.
356      *  \return New GEOM_Object, containing the created point.
357      */
358      GEOM_Object MakeTangentOnCurve (in GEOM_Object theRefCurve,
359                                      in double theParameter);
360
361     /*!
362      *  Create a vector with the given components.
363      *  \param theDX X component of the vector.
364      *  \param theDY Y component of the vector.
365      *  \param theDZ Z component of the vector.
366      *  \return New GEOM_Object, containing the created vector.
367      */
368     GEOM_Object MakeVectorDXDYDZ (in double theDX,
369                                   in double theDY,
370                                   in double theDZ);
371
372     /*!
373      *  Create a vector between two points.
374      *  \param thePnt1 Start point for the vector.
375      *  \param thePnt2 End point for the vector.
376      *  \return New GEOM_Object, containing the created vector.
377      */
378     GEOM_Object MakeVectorTwoPnt (in GEOM_Object thePnt1, in GEOM_Object thePnt2);
379
380     /*!
381      *  Create a line, passing through the given point
382      *  and parrallel to the given direction
383      *  \param thePnt Point. The resulting line will pass through it.
384      *  \param theDir Direction. The resulting line will be parallel to it.
385      *  \return New GEOM_Object, containing the created line.
386      */
387     GEOM_Object MakeLine (in GEOM_Object thePnt, in GEOM_Object theDir);
388
389     /*!
390      *  Create a line, passing through the given points
391      *  \param thePnt1 First of two points, defining the line.
392      *  \param thePnt2 Second of two points, defining the line.
393      *  \return New GEOM_Object, containing the created line.
394      */
395     GEOM_Object MakeLineTwoPnt (in GEOM_Object thePnt1, in GEOM_Object thePnt2);
396
397     /*!
398      *  Create a line, given by two faces intersection.
399      *  \param theFace1 First of two faces, defining the line.
400      *  \param theFace2 Second of two faces, defining the line.
401      *  \return New GEOM_Object, containing the created line.
402      */
403     GEOM_Object MakeLineTwoFaces (in GEOM_Object theFace1, in GEOM_Object theFace2);
404
405     /*!
406      *  Create a plane, passing through the three given points
407      *  \param thePnt1 First of three points, defining the plane.
408      *  \param thePnt2 Second of three points, defining the plane.
409      *  \param thePnt3 Fird of three points, defining the plane.
410      *  \param theTrimSize Half size of a side of quadrangle face, representing the plane.
411      *  \return New GEOM_Object, containing the created plane.
412      */
413     GEOM_Object MakePlaneThreePnt (in GEOM_Object thePnt1,
414                                    in GEOM_Object thePnt2,
415                                    in GEOM_Object thePnt3,
416                                    in double theTrimSize);
417
418     /*!
419      *  Create a plane, passing through the given point
420      *  and normal to the given vector.
421      *  \param thePnt Point, the plane has to pass through.
422      *  \param theVec Vector, defining the plane normal direction.
423      *  \param theTrimSize Half size of a side of quadrangle face, representing the plane.
424      *  \return New GEOM_Object, containing the created plane.
425      */
426     GEOM_Object MakePlanePntVec (in GEOM_Object thePnt,
427                                  in GEOM_Object theVec,
428                                  in double theTrimSize);
429
430     /*!
431      *  Create a plane, similar to the existing one, but with another size of representing face.
432      *  \param theFace Referenced plane or LCS(Marker).
433      *  \param theTrimSize New half size of a side of quadrangle face, representing the plane.
434      *  \return New GEOM_Object, containing the created plane.
435      */
436     GEOM_Object MakePlaneFace (in GEOM_Object theFace,
437                                in double theTrimSize);
438                                
439     /*!
440      *  Create a plane, by two vectors.
441      *  \param theVec1 Vector1, the plane has to pass through first point of this vector.
442      *  \param theVec Vector2, defining the plane normal direction.
443      *  \param theTrimSize Half size of a side of quadrangle face, representing the plane.
444      *  \return New GEOM_Object, containing the created plane.
445      */
446     GEOM_Object MakePlane2Vec (in GEOM_Object theVec1,
447                                in GEOM_Object theVec2,
448                                in double theTrimSize);
449                                
450     /*!
451      *  Create a plane, defined by local coordinate system.
452      *  \param theLCS Referenced LCS(Marker).
453      *  \param theTrimSize Half size of a side of quadrangle face, representing the plane.
454      *  \param theOrientation OXY, OYZ or OZX orientation = (1, 2 or 3).
455      *  \return New GEOM_Object, containing the created plane.
456      */
457     GEOM_Object MakePlaneLCS (in GEOM_Object theLCS,
458                               in double theTrimSize,
459                               in double theOrientation);
460
461     /*!
462      *  Create a local coordinate system.
463      *  \param theOX,theOY,theOZ Three coordinates of coordinate system origin.
464      *  \param theXDX,theXDY,theXDZ Three components of OX direction
465      *  \param theYDX,theYDY,theYDZ Three components of OY direction
466      *  \return New GEOM_Object, containing the created coordinate system.
467      */
468     GEOM_Object MakeMarker (in double theOX , in double theOY , in double theOZ,
469                             in double theXDX, in double theXDY, in double theXDZ,
470                             in double theYDX, in double theYDY, in double theYDZ);
471
472     /*!
473      *  Create a tangent plane to specified face in the point with specified parameters.
474      *  Values of parameters should be between 0. and 1.0
475      *  \param theFace - face for which tangent plane shuold be built.
476      *  \param theParameterU - value of parameter by U
477      *  \param theParameterV - value of parameter Vthe
478      *  \param theTrimSize - defines sizes of created face
479      *  \return New GEOM_Object, containing the face built on tangent plane.
480      */
481     GEOM_Object MakeTangentPlaneOnFace(in GEOM_Object theFace,
482                                        in double theParameterU,
483                                        in double theParameterV,
484                                        in double theTrimSize);
485   };
486
487   interface GEOM_ITransformOperations : GEOM_IOperations
488   {
489     /*!
490      *  Translate the given object along the vector, specified by its end points.
491      *  \param theObject The object to be translated.
492      *  \param thePoint1 Start point of translation vector.
493      *  \param thePoint2 End point of translation vector.
494      *  \return theObject.
495      */
496     GEOM_Object TranslateTwoPoints (in GEOM_Object theObject,
497                                     in GEOM_Object thePoint1,
498                                     in GEOM_Object thePoint2);
499
500     /*!
501      *  Translate the given object along the vector, specified
502      *  by its end points, creating its copy before the translation.
503      *  \param theObject The object to be translated.
504      *  \param thePoint1 Start point of translation vector.
505      *  \param thePoint2 End point of translation vector.
506      *  \return New GEOM_Object, containing the translated object.
507      */
508     GEOM_Object TranslateTwoPointsCopy (in GEOM_Object theObject,
509                                         in GEOM_Object thePoint1,
510                                         in GEOM_Object thePoint2);
511
512     /*!
513      *  Translate the given object along the vector, specified by its components.
514      *  \param theObject The object to be translated.
515      *  \param theDX,theDY,theDZ Components of translation vector.
516      *  \return theObject.
517      */
518     GEOM_Object TranslateDXDYDZ (in GEOM_Object theObject,
519                                  in double theDX, in double theDY, in double theDZ);
520
521     /*!
522      *  Translate the given object along the vector, specified
523      *  by its components, creating its copy before the translation.
524      *  \param theObject The object to be translated.
525      *  \param theDX,theDY,theDZ Components of translation vector.
526      *  \return New GEOM_Object, containing the translated object.
527      */
528     GEOM_Object TranslateDXDYDZCopy (in GEOM_Object theObject,
529                                      in double theDX, in double theDY, in double theDZ);
530
531
532     /*!
533      *  Translate the given object along the given vector.
534      *  \param theObject The object to be translated.
535      *  \param theVector Translation vector, giving both direction and distance.
536      *  \return theObject.
537      */
538     GEOM_Object TranslateVector (in GEOM_Object theObject,
539                                  in GEOM_Object theVector);
540
541     /*!
542      *  Translate the given object along the given vector,
543      *  creating its copy before the translation.
544      *  \param theObject The object to be translated.
545      *  \param theVector Translation vector, giving both direction and distance.
546      *  \return New GEOM_Object, containing the translated object.
547      */
548     GEOM_Object TranslateVectorCopy (in GEOM_Object theObject,
549                                      in GEOM_Object theVector);
550
551     /*!
552      *  Translate the given object along the given vector on given distance,
553      *  creating its copy before the translation.
554      *  \param theObject The object to be translated.
555      *  \param theVector Translation vector, giving a direction.
556      *  \param theDistance Translation distance, giving a distance.
557      *  \param theCope Translation copy, creating its copy if true.
558      *  \return New GEOM_Object, containing the translated object.
559      */
560     GEOM_Object TranslateVectorDistance (in GEOM_Object theObject,
561                                          in GEOM_Object theVector,
562                                          in double      theDistance,
563                                          in boolean     theCopy);
564
565     /*!
566      *  Translate the given object along the given vector a given number times
567      *  \param theObject The object to be translated.
568      *  \param theVector Direction of the translation.
569      *  \param theStep Distance to translate on.
570      *  \param theNbTimes Quantity of translations to be done.
571      *  \return New GEOM_Object, containing compound of all
572      *          the shapes, obtained after each translation.
573      */
574     GEOM_Object MultiTranslate1D (in GEOM_Object theObject,
575                                   in GEOM_Object theVector,
576                                   in double theStep,
577                                   in long theNbTimes);
578
579     /*!
580      *  Conseqently apply two specified translations to theObject specified number of times.
581      *  \param theObject The object to be translated.
582      *  \param theVector1 Direction of the first translation.
583      *  \param theStep1 Step of the first translation.
584      *  \param theNbTimes1 Quantity of translations to be done along theVector1.
585      *  \param theVector2 Direction of the second translation.
586      *  \param theStep2 Step of the second translation.
587      *  \param theNbTimes2 Quantity of translations to be done along theVector2.
588      *  \return New GEOM_Object, containing compound of all
589      *          the shapes, obtained after each translation.
590      */
591     GEOM_Object MultiTranslate2D (in GEOM_Object theObject,
592                                   in GEOM_Object theVector1,
593                                   in double theStep1,
594                                   in long theNbTimes1,
595                                   in GEOM_Object theVector2,
596                                   in double theStep2,
597                                   in long theNbTimes2);
598
599     /*!
600      *  Rotate given object around vector perpendicular to plane containing three points.
601      *  \param theObject The object to be rotated.
602      *  \param theCentPoint central point - the axis is the vector perpendicular to the plane
603      *  containing the three points.
604      *  \param thePoint1 and thePoint2 - in a perpendicular plan of the axis.
605      *  \return theObject.
606      */
607     GEOM_Object RotateThreePoints (in GEOM_Object theObject,
608                                    in GEOM_Object theCentPoint,
609                                    in GEOM_Object thePoint1,
610                                    in GEOM_Object thePoint2);
611
612
613     /*!
614      *  Rotate given object around vector perpendicular to plane containing three points.
615      *  Creating its copy before the rotatation.
616      *  \param theObject The object to be rotated.
617      *  \param theCentPoint central point - the axis is the vector perpendicular to the plane
618      *  containing the three points.
619      *  \param thePoint1 and thePoint2 - in a perpendicular plan of the axis.
620      *  \return New GEOM_Object, containing the rotated object.
621      */
622     GEOM_Object RotateThreePointsCopy (in GEOM_Object theObject,
623                                        in GEOM_Object theCentPoint,
624                                        in GEOM_Object thePoint1,
625                                        in GEOM_Object thePoint2);
626
627     /*!
628      *  Rotate the given object around the given axis on the given angle.
629      *  \param theObject The object to be rotated.
630      *  \param theAxis Rotation axis.
631      *  \param theAngle Rotation angle in radians.
632      *  \return theObject.
633      */
634     GEOM_Object Rotate (in GEOM_Object theObject,
635                         in GEOM_Object theAxis,
636                         in double theAngle);
637
638
639     /*!
640      *  Rotate the given object around the given axis
641      *  on the given angle, creating its copy before the rotatation.
642      *  \param theObject The object to be rotated.
643      *  \param theAxis Rotation axis.
644      *  \param theAngle Rotation angle in radians.
645      *  \return New GEOM_Object, containing the rotated object.
646      */
647     GEOM_Object RotateCopy (in GEOM_Object theObject,
648                             in GEOM_Object theAxis,
649                             in double theAngle);
650
651
652     /*!
653      *  Rotate the given object around the given axis a given number times.
654      *  Rotation angle will be 2*PI/theNbTimes.
655      *  \param theObject The object to be rotated.
656      *  \param theAxis The rotation axis.
657      *  \param theNbTimes Quantity of rotations to be done.
658      *  \return New GEOM_Object, containing compound of all the
659      *          shapes, obtained after each rotation.
660      */
661     GEOM_Object MultiRotate1D (in GEOM_Object theObject,
662                                in GEOM_Object theAxis,
663                                in long theNbTimes);
664
665     /*!
666      *  Rotate the given object around the
667      *  given axis on the given angle a given number
668      *  times and multi-translate each rotation result.
669      *  Translation direction passes through center of gravity
670      *  of rotated shape and its projection on the rotation axis.
671      *  \param theObject The object to be rotated.
672      *  \param theAxis Rotation axis.
673      *  \param theAngle Rotation angle in graduces.
674      *  \param theNbTimes1 Quantity of rotations to be done.
675      *  \param theStep Translation distance.
676      *  \param theNbTimes2 Quantity of translations to be done.
677      *  \return New GEOM_Object, containing compound of all the
678      *          shapes, obtained after each transformation.
679      */
680     GEOM_Object MultiRotate2D (in GEOM_Object theObject,
681                                in GEOM_Object theAxis,
682                                in double theAngle,
683                                in long theNbTimes1,
684                                in double theStep,
685                                in long theNbTimes2);
686
687     /*!
688      *  Replace the given object by an object,
689      *  symmetrical to it relatively the given plane.
690      *  \param theObject The object to be mirrored.
691      *  \param thePlane Plane of symmetry.
692      */
693     GEOM_Object MirrorPlane (in GEOM_Object theObject, in GEOM_Object thePlane);
694
695     /*!
696      *  Create an object, symmetrical
697      *  to the given one relatively the given plane.
698      *  \param theObject The object to be mirrored.
699      *  \param thePlane Plane of symmetry.
700      *  \return New GEOM_Object, containing the mirrored shape.
701      */
702     GEOM_Object MirrorPlaneCopy (in GEOM_Object theObject, in GEOM_Object thePlane);
703
704     /*!
705      *  Replace the given object by an object,
706      *  symmetrical to it relatively the given axis.
707      *  \param theObject The object to be mirrored.
708      *  \param theAxis Axis of symmetry.
709      *  \return theObject.
710      */
711     GEOM_Object MirrorAxis (in GEOM_Object theObject, in GEOM_Object theAxis);
712
713     /*!
714      *  Create an object, symmetrical
715      *  to the given one relatively the given axis.
716      *  \param theObject The object to be mirrored.
717      *  \param theAxis Axis of symmetry.
718      *  \return New GEOM_Object, containing the mirrored object.
719      */
720     GEOM_Object MirrorAxisCopy (in GEOM_Object theObject, in GEOM_Object theAxis);
721
722     /*!
723      *  Replace the given object by an object, symmetrical to it relatively the given point.
724      *  \param theObject The object to be mirrored.
725      *  \param thePoint Point of symmetry.
726      *  \return theObject.
727      */
728     GEOM_Object MirrorPoint (in GEOM_Object theObject, in GEOM_Object thePoint);
729
730     /*!
731      *  Create an object, symmetrical to the given one relatively the given point.
732      *  \param theObject The object to be mirrored.
733      *  \param thePoint Point of symmetry.
734      *  \return New GEOM_Object, containing the mirrored object.
735      */
736     GEOM_Object MirrorPointCopy (in GEOM_Object theObject, in GEOM_Object thePoint);
737
738     /*!
739      *  Replace the given object by its offset.
740      *  \param theObject The base object for the offset.
741      *  \param theOffset Offset value.
742      *  \return theObject.
743      */
744     GEOM_Object OffsetShape (in GEOM_Object theObject, in double theOffset);
745
746     /*!
747      *  Create new object as offset of the given one.
748      *  \param theObject The base object for the offset.
749      *  \param theOffset Offset value.
750      *  \return New GEOM_Object, containing the offset object.
751      */
752     GEOM_Object OffsetShapeCopy (in GEOM_Object theObject, in double theOffset);
753
754     /*!
755      *  Scale the given object by the factor.
756      *  \param theObject The object to be scaled.
757      *  \param thePoint Center point for scaling.
758      *  \param theFactor Scaling factor value.
759      *  \return theObject.
760      */
761     GEOM_Object ScaleShape (in GEOM_Object theObject, in GEOM_Object thePoint,
762                             in double theFactor);
763
764     /*!
765      *  Scale the given object by the factor, creating its copy before the scaling.
766      *  \param theObject The object to be scaled.
767      *  \param thePoint Center point for scaling.
768      *  \param theFactor Scaling factor value.
769      *  \return New GEOM_Object, containing the scaled shape.
770      */
771     GEOM_Object ScaleShapeCopy (in GEOM_Object theObject, in GEOM_Object thePoint,
772                                 in double theFactor);
773
774     /*!
775      *  Scale the given object by different factors along coordinate axes.
776      *  \param theObject The object to be scaled.
777      *  \param thePoint Center point for scaling.
778      *  \param theFactorX,theFactorY,theFactorZ Scaling factors along each axis.
779      *  \return theObject.
780      */
781     GEOM_Object ScaleShapeAlongAxes (in GEOM_Object theObject,
782                                      in GEOM_Object thePoint,
783                                      in double theFactorX,
784                                      in double theFactorY,
785                                      in double theFactorZ);
786
787     /*!
788      *  Scale the given object by different factors along coordinate axes,
789      *  creating its copy before the scaling.
790      *  \param theObject The object to be scaled.
791      *  \param thePoint Center point for scaling.
792      *  \param theFactorX,theFactorY,theFactorZ Scaling factors along each axis.
793      *  \return New GEOM_Object, containing the scaled shape.
794      */
795     GEOM_Object ScaleShapeAlongAxesCopy (in GEOM_Object theObject,
796                                          in GEOM_Object thePoint,
797                                          in double theFactorX,
798                                          in double theFactorY,
799                                          in double theFactorZ);
800
801     /*!
802      *  Modify the Location of the given object by LCS.
803      *  \param theObject The object to be displaced.
804      *  \param theStartLCS Coordinate system to perform displacement from it.
805      *                     If \a theStartLCS is NULL, displacement
806      *                     will be performed from global CS.
807      *                     If \a theObject itself is used as \a theStartLCS,
808      *                     its location will be changed to \a theEndLCS.
809      *  \param theEndLCS Coordinate system to perform displacement to it.
810      *  \return theObject.
811      */
812     GEOM_Object PositionShape (in GEOM_Object theObject,
813                                in GEOM_Object theStartLCS,
814                                in GEOM_Object theEndLCS);
815
816     /*!
817      *  Modify the Location of the given object by LCS,
818      *  creating its copy before the setting.
819      *  \param theObject The object to be displaced.
820      *  \param theStartLCS Coordinate system to perform displacement from it.
821      *                     If \a theStartLCS is NULL, displacement
822      *                     will be performed from global CS.
823      *                     If \a theObject itself is used as \a theStartLCS,
824      *                     its location will be changed to \a theEndLCS.
825      *  \param theEndLCS Coordinate system to perform displacement to it.
826      *  \return New GEOM_Object, containing the displaced shape.
827      */
828     GEOM_Object PositionShapeCopy (in GEOM_Object theObject,
829                                    in GEOM_Object theStartLCS,
830                                    in GEOM_Object theEndLCS);
831
832     /*!
833      *  Modify the Location of the given object by Path,
834      *  \param  theObject The object to be displaced.
835      *  \param  thePath Wire or Edge along that the object will be translated.
836      *  \param  theDistance progress of Path (0 = actual location, 1 = end of path location).
837      *  \param  theCopy is a true or false parameter. true is to create a copy, false to move the object.
838      *  \param  theCopy is a true or false parameter. true is to reverse direction, false is to move normal direction.
839      *  \return New GEOM_Object, containing the displaced shape.
840      */
841
842     GEOM_Object PositionAlongPath (in GEOM_Object theObject,
843                                    in GEOM_Object thePath,
844                                    in double theDistance,
845                                    in boolean theCopy,
846                                    in boolean theReverse);
847
848     /*!
849      *  Recompute the shape from its arguments.
850      *  \param theObject The object to be recomputed.
851      *  \return theObject.
852      */
853     GEOM_Object RecomputeObject (in GEOM_Object theObject);
854   };
855
856   /*!
857    *  GEOM_I3DPrimOperations: Interface for 3D primitives creation
858    *  Box, Cylinder, Cone, Sphere, Prism (extrusion),
859    *  Pipe (extrusion along contour), Revolution, Solid (from shell).
860    */
861   interface GEOM_I3DPrimOperations : GEOM_IOperations
862   {
863     /*!
864      *  Create a box with specified dimensions along the coordinate axes
865      *  and with edges, parallel to the coordinate axes.
866      *  Center of the box will be at point (DX/2, DY/2, DZ/2).
867      *  \param theDX Length of Box edges, parallel to OX axis.
868      *  \param theDY Length of Box edges, parallel to OY axis.
869      *  \param theDZ Length of Box edges, parallel to OZ axis.
870      *  \return New GEOM_Object, containing the created box.
871      */
872     GEOM_Object MakeBoxDXDYDZ (in double theDX, in double theDY, in double theDZ);
873
874     /*!
875      *  Create a box with two specified opposite vertices,
876      *  and with edges, parallel to the coordinate axes
877      *  \param thePnt1 First of two opposite vertices.
878      *  \param thePnt2 Second of two opposite vertices.
879      *  \return New GEOM_Object, containing the created box.
880      */
881     GEOM_Object MakeBoxTwoPnt (in GEOM_Object thePnt1, in GEOM_Object thePnt2);
882
883     /*!
884      *  Create a face specified dimensions along OX-OY coordinate axes,
885      *  with edges parallel to the coordinate axes.
886      *  Center of the face will be at point (0, 0, 0).
887      *  \param theH Height of the Face.
888      *  \param theW Width of the Face.
889      *  \param theOrientation Orientation belong axis OXY OYZ OZX
890      *  \return New GEOM_Object, containing the created face.
891      */
892     GEOM_Object MakeFaceHW (in double theH, in double theW, in short theOrientation);
893     /*!
894      *  Create a face by normale vector or edge and two specified sizes,
895      *  vertical (H) and horisontal (W).
896      *  \param theVec defines plane.
897      *  \param theH vertical size (height).
898      *  \param theW horisontal size (width). 
899      *  \return New GEOM_Object, containing the created face.
900      */
901     GEOM_Object MakeFaceObjHW (in GEOM_Object theObj, in double theH, in double theW);
902     /*!
903      *  Create a Disk (circular face) with given center, normal vector and radius.
904      *  \param thePnt disk center.
905      *  \param theVec Vector, normal to the plane of the disk.
906      *  \param theR Disk radius.
907      *  \return New GEOM_Object, containing the created disk.
908      */
909     GEOM_Object MakeDiskPntVecR (in GEOM_Object thePnt,
910                                  in GEOM_Object theVec,
911                                  in double theR);
912     /*!
913      *  Create a disk (circular face), passing through three given points
914      *  \param thePnt1, thePnt2, thePnt3 Points, defining the disk.
915      *  \return New GEOM_Object, containing the created disk.
916      */
917     GEOM_Object MakeDiskThreePnt (in GEOM_Object thePnt1,
918                                   in GEOM_Object thePnt2,
919                                   in GEOM_Object thePnt3);
920                                   
921     /*!
922      *  Create a disk specified dimensions along OX-OY coordinate axes,
923      *  Center of the disk at point (0, 0, 0).
924      *  \param theR of the Disk.
925      *  \param theOrientation Orientation belong axis OXY OYZ OZX
926      *  \return New GEOM_Object, containing the created disk.
927      */
928     GEOM_Object MakeDiskR (in double theR, in short theOrientation);
929     
930     /*!
931      *  Create a cylinder with given radius and height at
932      *  the origin of coordinate system. Axis of the cylinder
933      *  will be collinear to the OZ axis of the coordinate system.
934      *  \param theR Cylinder radius.
935      *  \param theH Cylinder height.
936      *  \return New GEOM_Object, containing the created cylinder.
937      */
938     GEOM_Object MakeCylinderRH (in double theR, in double theH);
939
940     /*!
941      *  Create a cylinder with given base point, axis, radius and height.
942      *  \param thePnt Central point of cylinder base.
943      *  \param theAxis Cylinder axis.
944      *  \param theR Cylinder radius.
945      *  \param theH Cylinder height.
946      *  \return New GEOM_Object, containing the created cylinder.
947      */
948     GEOM_Object MakeCylinderPntVecRH (in GEOM_Object thePnt,
949                                       in GEOM_Object theAxis,
950                                       in double      theR,
951                                       in double      theH);
952
953     /*!
954      *  Create a cone with given height and radiuses at
955      *  the origin of coordinate system. Axis of the cone will
956      *  be collinear to the OZ axis of the coordinate system.
957      *  \param theR1 Radius of the first cone base.
958      *  \param theR2 Radius of the second cone base.
959      *    \note If both radiuses are non-zero, the cone will be truncated.
960      *    \note If the radiuses are equal, a cylinder will be created instead.
961      *  \param theH Cone height.
962      *  \return New GEOM_Object, containing the created cone.
963      */
964     GEOM_Object MakeConeR1R2H (in double theR1, in double theR2, in double theH);
965
966     /*!
967      *  Create a cone with given base point, axis, height and radiuses.
968      *  \param thePnt Central point of the first cone base.
969      *  \param theAxis Cone axis.
970      *  \param theR1 Radius of the first cone base.
971      *  \param theR2 Radius of the second cone base.
972      *    \note If both radiuses are non-zero, the cone will be truncated.
973      *    \note If the radiuses are equal, a cylinder will be created instead.
974      *  \param theH Cone height.
975      *  \return New GEOM_Object, containing the created cone.
976      */
977     GEOM_Object MakeConePntVecR1R2H (in GEOM_Object thePnt,
978                                      in GEOM_Object theAxis,
979                                      in double      theR1,
980                                      in double      theR2,
981                                      in double      theH);
982
983     /*!
984      *  Create a torus with given radiuses at the origin of coordinate system.
985      *  \param theRMajor Torus major radius.
986      *  \param theRMinor Torus minor radius.
987      *  \return New GEOM_Object, containing the created torus.
988      */
989     GEOM_Object MakeTorusRR (in double theRMajor,
990                              in double theRMinor);
991
992     /*!
993      *  Create a torus with given center, normal vector and radiuses.
994      *  \param thePnt Torus central point.
995      *  \param theVec Torus axis of symmetry.
996      *  \param theRMajor Torus major radius.
997      *  \param theRMinor Torus minor radius.
998      *  \return New GEOM_Object, containing the created torus.
999      */
1000     GEOM_Object MakeTorusPntVecRR (in GEOM_Object thePnt,
1001                                    in GEOM_Object theVec,
1002                                    in double theRMajor,
1003                                    in double theRMinor);
1004
1005     /*!
1006      *  Create a sphere with given radius at the origin of coordinate system.
1007      *  \param theR Sphere radius.
1008      *  \return New GEOM_Object, containing the created sphere.
1009      */
1010     GEOM_Object MakeSphereR (in double theR);
1011
1012     /*!
1013      *  Create a sphere with given center and radius.
1014      *  \param thePnt Sphere center.
1015      *  \param theR Sphere radius.
1016      *  \return New GEOM_Object, containing the created .
1017      */
1018     GEOM_Object MakeSpherePntR (in GEOM_Object thePnt, in double theR);
1019
1020     /*!
1021      *  Create a shape by extrusion of the base shape along the vector,
1022      *  i.e. all the space, transfixed by the base shape during its translation
1023      *  along the vector on the given distance.
1024      *  \param theBase Base shape to be extruded.
1025      *  \param theVec Direction of extrusion.
1026      *  \param theH Prism dimension along theVec.
1027      *  \return New GEOM_Object, containing the created prism.
1028      */
1029     GEOM_Object MakePrismVecH (in GEOM_Object theBase,
1030                                in GEOM_Object theVec,
1031                                in double      theH);
1032     /*  The Same Prism but in 2 directions (forward&backward) */
1033     GEOM_Object MakePrismVecH2Ways (in GEOM_Object theBase,
1034                                     in GEOM_Object theVec,
1035                                     in double      theH);
1036
1037     /*!
1038      *  Create a shape by extrusion of the base shape along a vector, defined by two points.
1039      *  \param theBase Base shape to be extruded.
1040      *  \param thePoint1 First end of extrusion vector.
1041      *  \param thePoint2 Second end of extrusion vector.
1042      *  \return New GEOM_Object, containing the created prism.
1043      */
1044     GEOM_Object MakePrismTwoPnt (in GEOM_Object theBase,
1045                                  in GEOM_Object thePoint1,
1046                                  in GEOM_Object thePoint2);
1047     /*  The same prism but in two directions forward&backward */
1048     GEOM_Object MakePrismTwoPnt2Ways (in GEOM_Object theBase,
1049                                       in GEOM_Object thePoint1,
1050                                       in GEOM_Object thePoint2);
1051                                     
1052     /*!
1053      *  Create a shape by extrusion of the base shape along a vector, defined by DX DY DZ.
1054      *  \param theBase Base shape to be extruded.
1055      *  \param DX, DY, DZ end of extrusion vector.
1056      *  \return New GEOM_Object, containing the created prism.
1057      */
1058     GEOM_Object MakePrismDXDYDZ (in GEOM_Object theBase,
1059                                  in double theDX, in double theDY, in double theDZ);
1060     /*  The same prism but in two directions forward&backward */
1061     GEOM_Object MakePrismDXDYDZ2Ways (in GEOM_Object theBase,
1062                                       in double theDX, in double theDY, in double theDZ);
1063
1064     /*!
1065      *  Create a shape by extrusion of the base shape along
1066      *  the path shape. The path shape can be a wire or an edge.
1067      *  \param theBase Base shape to be extruded.
1068      *  \param thePath Path shape to extrude the base shape along it.
1069      *  \return New GEOM_Object, containing the created pipe.
1070      */
1071     GEOM_Object MakePipe (in GEOM_Object theBase, in GEOM_Object thePath);
1072
1073     /*!
1074      *  Create a shape by revolution of the base shape around the axis
1075      *  on the given angle, i.e. all the space, transfixed by the base
1076      *  shape during its rotation around the axis on the given angle.
1077      *  \param theBase Base shape to be rotated.
1078      *  \param theAxis Rotation axis.
1079      *  \param theAngle Rotation angle in radians.
1080      *  \return New GEOM_Object, containing the created revolution.
1081      */
1082     GEOM_Object MakeRevolutionAxisAngle (in GEOM_Object theBase,
1083                                          in GEOM_Object theAxis,
1084                                          in double theAngle);
1085     /*  The Same Revolution but in both ways forward&backward */
1086     GEOM_Object MakeRevolutionAxisAngle2Ways (in GEOM_Object theBase,
1087                                               in GEOM_Object theAxis,
1088                                               in double theAngle);
1089
1090     /*!
1091      *  Create a filling from the given compound of contours.
1092      *  \param theMinDeg a minimal degree of BSpline surface to create
1093      *  \param theMaxDeg a maximal degree of BSpline surface to create
1094      *  \param theTol2D a 2d tolerance to be reached
1095      *  \param theTol3D a 3d tolerance to be reached
1096      *  \param theNbIter a number of iteration of approximation algorithm
1097      *  \return New GEOM_Object, containing the created filling surface.
1098      */
1099     GEOM_Object MakeFilling (in GEOM_Object theShape,
1100                              in long theMinDeg, in long theMaxDeg,
1101                              in double theTol2D, in double theTol3D,
1102                              in long theNbIter, in boolean theApprox);
1103
1104     /*!
1105      *  Create a shell or solid passing through set of sections.Sections should be wires,edges or vertices.
1106      *  \param theSeqSections - set of specified sections.
1107      *  \param theModeSolid - mode defining building solid or shell
1108      *  \param thePreci - precision 3D used for smoothing by default 1.e-6
1109      *  \param theRuled - mode defining type of the result surfaces (ruled or smoothed).
1110      *  \return New GEOM_Object, containing the created shell or solid.
1111      */
1112     GEOM_Object MakeThruSections(in ListOfGO theSeqSections,
1113                                  in boolean theModeSolid,
1114                                  in double thePreci,
1115                                  in boolean theRuled);
1116
1117       /*!
1118      *  Create a shape by extrusion of the profile shape along
1119      *  the path shape. The path shape can be a wire or an edge.
1120      *  the several profiles can be specified in the several locations of path. 
1121      *  \param theSeqBases - list of  Bases shape to be extruded.
1122      *  \param theLocations - list of locations on the path corresponding
1123      *                        specified list of the Bases shapes. Number of locations
1124      *                        should be equal to number of bases or list of locations can be empty.
1125      *  \param thePath - Path shape to extrude the base shape along it.
1126      *  \param theWithContact - the mode defining that the section is translated to be in
1127      *                          contact with the spine.
1128      *  \param - WithCorrection - defining that the section is rotated to be
1129      *                           orthogonal to the spine tangent in the correspondent point
1130      *  \return New GEOM_Object, containing the created pipe.
1131      */
1132     GEOM_Object MakePipeWithDifferentSections (in ListOfGO theSeqBases,
1133                                                in ListOfGO theLocations,
1134                                                in GEOM_Object thePath,
1135                                                in boolean theWithContact ,
1136                                                in boolean theWithCorrection );
1137
1138     /*!
1139      *  Create a shape by extrusion of the profile shape along
1140      *  the path shape. The path shape can be a shell or a face.
1141      *  the several profiles can be specified in the several locations of path. 
1142      *  \param theSeqBases - list of  Bases shape to be extruded.
1143      *  \param theSeqSubBases - list of corresponding subshapes of section shapes.
1144      *  \param theLocations - list of locations on the path corresponding
1145      *                        specified list of the Bases shapes. Number of locations
1146      *                        should be equal to number of bases.
1147      *  \param thePath - Path shape to extrude the base shape along it.
1148      *  \param theWithContact - the mode defining that the section is translated to be in
1149      *                          contact with the spine.
1150      *  \param - WithCorrection - defining that the section is rotated to be
1151      *                           orthogonal to the spine tangent in the correspondent point
1152      *  \return New GEOM_Object, containing the created pipe.
1153      */
1154     GEOM_Object MakePipeWithShellSections (in ListOfGO theSeqBases,
1155                                            in ListOfGO theSeqSubBases,
1156                                            in ListOfGO theLocations,
1157                                            in GEOM_Object thePath,
1158                                            in boolean theWithContact ,
1159                                            in boolean theWithCorrection );
1160
1161     /*!
1162      * Create solids between given sections
1163      *  \param theSeqBases - list of sections (shell or face).
1164      *  \param theLocations - list of corresponding vertexes
1165      *  \return New GEOM_Object, containing the created solids.
1166      */
1167     GEOM_Object MakePipeShellsWithoutPath (in ListOfGO theSeqBases,
1168                                            in ListOfGO theLocations);
1169
1170     /*!
1171      *  Create a shape by extrusion of the base shape along
1172      *  the path shape with constant bi-normal direction along the given vector. 
1173      *  The path shape can be a wire or an edge.
1174      *  \param theBase Base shape to be extruded.
1175      *  \param thePath Path shape to extrude the base shape along it.
1176      *  \param theVec Vector defines a constant binormal direction to keep the
1177      *                same angle beetween the Direction and the sections
1178      *                along the sweep surface.
1179      *  \return New GEOM_Object, containing the created pipe.
1180      */
1181     GEOM_Object MakePipeBiNormalAlongVector (in GEOM_Object theBase, 
1182                                              in GEOM_Object thePath, 
1183                                              in GEOM_Object theVec);
1184
1185   };
1186
1187   /*!
1188    *  GEOM_IShapesOperations: Interface for Shapes creation:
1189    *  Edge from two points, Wire from edges, Face from wire,
1190    *  Shell from faces, Solid from shells, Compound from shapes
1191    */
1192   interface GEOM_IShapesOperations : GEOM_IOperations
1193   {
1194     /*!
1195      *  Create a linear edge with specified ends.
1196      *  \param thePnt1 Point for the first end of edge.
1197      *  \param thePnt2 Point for the second end of edge.
1198      *  \return New GEOM_Object, containing the created edge.
1199      */
1200     GEOM_Object MakeEdge (in GEOM_Object thePnt1, in GEOM_Object thePnt2);
1201
1202     /*!
1203      *  Create a wire from the set of edges and wires.
1204      *  \param theEdgesAndWires List of edge and/or wires.
1205      *  \return New GEOM_Object, containing the created wire.
1206      */
1207     GEOM_Object MakeWire (in ListOfGO theEdgesAndWires);
1208
1209     /*!
1210      *  Create a face on the given wire.
1211      *  \param theWire closed Wire or Edge to build the face on.
1212      *  \param isPlanarWanted If TRUE, only planar face will be built.
1213      *                        If impossible, NULL object will be returned.
1214      *  \return New GEOM_Object, containing the created face.
1215      */
1216     GEOM_Object MakeFace (in GEOM_Object theWire, in boolean isPlanarWanted);
1217
1218     /*!
1219      *  Create a face on the given wires set.
1220      *  \param theWires List of closed wires or edges to build the face on.
1221      *  \param isPlanarWanted If TRUE, only planar face will be built.
1222      *                        If impossible, NULL object will be returned.
1223      *  \return New GEOM_Object, containing the created face.
1224      */
1225     GEOM_Object MakeFaceWires (in ListOfGO theWires, in boolean isPlanarWanted);
1226
1227     /*!
1228      *  Create a shell from the set of faces and shells.
1229      *  \param theFacesAndShells List of faces and/or shells.
1230      *  \return New GEOM_Object, containing the created shell.
1231      */
1232     GEOM_Object MakeShell (in ListOfGO theFacesAndShells);
1233
1234     /*!
1235      *  Create a solid, bounded by the given shell.
1236      *  \param theShell Bounding shell.
1237      *  \return New GEOM_Object, containing the created solid.
1238      */
1239     GEOM_Object MakeSolidShell (in GEOM_Object theShell);
1240
1241     /*!
1242      *  Create a solid, bounded by the given shells.
1243      *  \param theShells Bounding shells.
1244      *  \return New GEOM_Object, containing the created solid.
1245      */
1246     GEOM_Object MakeSolidShells (in ListOfGO theShells);
1247
1248     /*!
1249      *  Create a compound of the given shapes.
1250      *  \param theShapes List of shapes to put in compound.
1251      *  \return New GEOM_Object, containing the created compound.
1252      */
1253     GEOM_Object MakeCompound (in ListOfGO theShapes);
1254
1255     /*!
1256      *  Replace coincident faces in theShape by one face.
1257      *  \param theShape Initial shape.
1258      *  \param theTolerance Maximum distance between faces, which can be considered as coincident.
1259      *  \param doKeepNonSolids If FALSE, only solids will present in the result, otherwise all initial shapes.
1260      *  \return New GEOM_Object, containing a copy of theShape without coincident faces.
1261      */
1262     GEOM_Object MakeGlueFaces (in GEOM_Object theShape, in double theTolerance, in boolean doKeepNonSolids);
1263
1264     /*!
1265      *  Find coincident faces in theShape for possible gluing.
1266      *  \param theShape Initial shape.
1267      *  \param theTolerance Maximum distance between faces, which can be considered as coincident.
1268      *  \return ListOfGO
1269      */
1270     ListOfGO GetGlueFaces (in GEOM_Object theShape, in double theTolerance);
1271
1272     /*!
1273      *  Replace coincident faces in theShape by one face
1274      *  in compliance with given list of faces
1275      *  \param theShape Initial shape.
1276      *  \param theTolerance Maximum distance between faces, which can be considered as coincident.
1277      *  \param theFaces List of faces for gluing.
1278      *  \param doKeepNonSolids If FALSE, only solids will present in the result, otherwise all initial shapes.
1279      *  \return New GEOM_Object, containing a copy of theShape without some faces.
1280      */
1281     GEOM_Object MakeGlueFacesByList (in GEOM_Object theShape, in double theTolerance,
1282                                      in ListOfGO theFaces, in boolean doKeepNonSolids);
1283
1284     /*!
1285      *  Explode a shape on subshapes of a given type.
1286      *  \param theShape Shape to be exploded.
1287      *  \param theShapeType Type of sub-shapes to be retrieved.
1288      *  \param isSorted If this parameter is TRUE, sub-shapes will be
1289      *                  sorted by coordinates of their gravity centers.
1290      *  \return List of sub-shapes of type theShapeType, contained in theShape.
1291      */
1292     ListOfGO MakeExplode (in GEOM_Object theShape,
1293                           in long        theShapeType,
1294                           in boolean     isSorted);
1295
1296     /*!
1297      *  Explode a shape on subshapes of a given type.
1298      *  Does the same, as the above method, but returns IDs of sub-shapes,
1299      *  not GEOM_Objects. It works faster.
1300      *  \param theShape Shape to be exploded.
1301      *  \param theShapeType Type of sub-shapes to be retrieved.
1302      *  \param isSorted If this parameter is TRUE, sub-shapes will be
1303      *                  sorted by coordinates of their gravity centers.
1304      *  \return List of IDs of sub-shapes of type theShapeType, contained in theShape.
1305      */
1306     ListOfLong SubShapeAllIDs (in GEOM_Object theShape,
1307                                in long        theShapeType,
1308                                in boolean     isSorted);
1309
1310     /*!
1311      *  Get a sub shape defined by its unique ID inside \a theMainShape
1312      *  \note The sub shape GEOM_Objects can has ONLY ONE function.
1313      *        Don't try to apply modification operations on them.
1314      */
1315     GEOM_Object GetSubShape (in GEOM_Object theMainShape,
1316                              in long        theID);
1317
1318     /*!
1319      *  Get global index of \a theSubShape in \a theMainShape.
1320      *  \param theMainShape Main shape.
1321      *  \param theSubShape Sub-shape of the main shape.
1322      *  \return global index of \a theSubShape in \a theMainShape.
1323      */
1324     long GetSubShapeIndex (in GEOM_Object theMainShape, in GEOM_Object theSubShape);
1325
1326     /*!
1327      *  Get index of \a theSubShape in \a theMainShape, unique among sub-shapes of the same type.
1328      *  Together with method <VAR>GetShapeTypeString()</VAR> it can be used
1329      *  to generate automatic names for sub-shapes, when publishing them in a study.
1330      *  \param theMainShape Main shape.
1331      *  \param theSubShape Sub-shape of the main shape.
1332      *  \return index of \a theSubShape in a list of all sub-shapes of \a theMainShape of the same type.
1333      */
1334     long GetTopologyIndex (in GEOM_Object theMainShape, in GEOM_Object theSubShape);
1335
1336     /*!
1337      *  \brief Get name of type of \a theShape.
1338      *
1339      *  Use wide type notation, taking into consideration both topology and geometry of the shape.
1340      *  Together with method <VAR>GetTopologyIndex()</VAR> it can be used
1341      *  to generate automatic names for sub-shapes, when publishing them in a study.
1342      *  \param theShape The shape to get a type of.
1343      *  \return String, containing a type name of \a theShape.
1344      */
1345     string GetShapeTypeString (in GEOM_Object theShape);
1346
1347     /*!
1348      *  Count number of faces in the given shape.
1349      *  \param theShape Shape to count faces in.
1350      *  \return Number of faces in the given shape.
1351      */
1352     long NumberOfFaces (in GEOM_Object theShape);
1353
1354     /*!
1355      *  Count number of edges in the given shape.
1356      *  \param theShape Shape to count edges in.
1357      *  \return Number of edges in theShape.
1358      */
1359     long NumberOfEdges (in GEOM_Object theShape);
1360
1361     /*!
1362      *  Reverses an orientation the given shape.
1363      *  \param theShape Shape to be reversed.
1364      *  \return The reversed copy of theShape.
1365      */
1366     GEOM_Object ChangeOrientation (in GEOM_Object theShape);
1367
1368     /*!
1369      *  Retrieve all free faces from the given shape.
1370      *  Free face is a face, which is not shared between two shells of the shape.
1371      *  \param theShape Shape to find free faces in.
1372      *  \return List of IDs of all free faces, contained in theShape.
1373      */
1374     ListOfLong GetFreeFacesIDs (in GEOM_Object theShape);
1375
1376     /*!
1377      *  Get all sub-shapes of theShape1 of the given type, shared with theShape2.
1378      *  \param theShape1 Shape to find sub-shapes in.
1379      *  \param theShape2 Shape to find shared sub-shapes with.
1380      *  \param theShapeType Type of sub-shapes to be retrieved.
1381      *  \return List of sub-shapes of theShape1, shared with theShape2.
1382      */
1383     ListOfGO GetSharedShapes (in GEOM_Object theShape1,
1384                               in GEOM_Object theShape2,
1385                               in long        theShapeType);
1386
1387     /*!
1388      *  Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
1389      *  the specified plane by the certain way, defined through \a theState parameter.
1390      *  \param theShape Shape to find sub-shapes of.
1391      *  \param theShapeType Type of sub-shapes to be retrieved.
1392      *  \param theAx1 Vector (or line, or linear edge), specifying normal
1393      *                direction and location of the plane to find shapes on.
1394      *  \param theState The state of the subshapes to find.
1395      *  \return List of all found sub-shapes.
1396      */
1397     ListOfGO GetShapesOnPlane (in GEOM_Object theShape,
1398                                in long        theShapeType,
1399                                in GEOM_Object theAx1,
1400                                in shape_state theState);
1401     /*!
1402      *  Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
1403      *  the specified plane by the certain way, defined through \a theState parameter.
1404      *  \param theShape Shape to find sub-shapes of.
1405      *  \param theShapeType Type of sub-shapes to be retrieved.
1406      *  \param theAx1 Vector (or line, or linear edge), specifying normal
1407      *                direction of the plane to find shapes on.
1408      *  \param thePnt Point specifying location of the plane to find shapes on.
1409      *  \param theState The state of the subshapes to find.
1410      *  \return List of all found sub-shapes.
1411      */
1412     ListOfGO GetShapesOnPlaneWithLocation (in GEOM_Object theShape,
1413                                            in long        theShapeType,
1414                                            in GEOM_Object theAx1,
1415                                            in GEOM_Object thePnt,
1416                                            in shape_state theState);
1417
1418
1419
1420     /*!
1421      *  Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
1422      *  the specified cylinder by the certain way, defined through \a theState parameter.
1423      *  \param theShape Shape to find sub-shapes of.
1424      *  \param theShapeType Type of sub-shapes to be retrieved.
1425      *  \param theAxis Vector (or line, or linear edge), specifying
1426      *                 axis of the cylinder to find shapes on.
1427      *  \param theRadius Radius of the cylinder to find shapes on.
1428      *  \param theState The state of the subshapes to find.
1429      *  \return List of all found sub-shapes.
1430      */
1431     ListOfGO GetShapesOnCylinder (in GEOM_Object theShape,
1432                                   in long        theShapeType,
1433                                   in GEOM_Object theAxis,
1434                                   in double      theRadius,
1435                                   in shape_state theState);
1436
1437     /*!
1438      *  Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
1439      *  the specified sphere by the certain way, defined through \a theState parameter.
1440      *  \param theShape Shape to find sub-shapes of.
1441      *  \param theShapeType Type of sub-shapes to be retrieved.
1442      *  \param theCenter Point, specifying center of the sphere to find shapes on.
1443      *  \param theRadius Radius of the sphere to find shapes on.
1444      *  \param theState The state of the subshapes to find.
1445      *  \return List of all found sub-shapes.
1446      */
1447     ListOfGO GetShapesOnSphere (in GEOM_Object theShape,
1448                                 in long        theShapeType,
1449                                 in GEOM_Object theCenter,
1450                                 in double      theRadius,
1451                                 in shape_state theState);
1452
1453     /*!
1454      *  Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
1455      *  the specified quadrangle by the certain way, defined through \a theState parameter.
1456      *  \param theShape Shape to find sub-shapes of.
1457      *  \param theShapeType Type of sub-shapes to be retrieved.
1458      *  \param theTopLeftPoint Top left quadrangle corner
1459      *  \param theTopRigthPoint Top right quadrangle corner
1460      *  \param theBottomLeftPoint Bottom left quadrangle corner
1461      *  \param theBottomRigthPoint Bottom right quadrangle corner
1462      *  \param theState The state of the subshapes to find.
1463      *  \return List of all found sub-shapes.
1464      */
1465     ListOfGO GetShapesOnQuadrangle (in GEOM_Object theShape,
1466                                     in long        theShapeType,
1467                                     in GEOM_Object theTopLeftPoint,
1468                                     in GEOM_Object theTopRigthPoint,
1469                                     in GEOM_Object theBottomLeftPoint,
1470                                     in GEOM_Object theBottomRigthPoint,
1471                                     in shape_state theState);
1472
1473     /*!
1474      *  Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
1475      *  the specified plane by the certain way, defined through \a theState parameter.
1476      *  \param theShape Shape to find sub-shapes of.
1477      *  \param theShapeType Type of sub-shapes to be retrieved.
1478      *  \param theAx1 Vector (or line, or linear edge), specifying normal
1479      *                direction and location of the plane to find shapes on.
1480      *  \param theState The state of the subshapes to find.
1481      *  \return List of IDs of all found sub-shapes.
1482      */
1483     ListOfLong GetShapesOnPlaneIDs (in GEOM_Object theShape,
1484                                     in long        theShapeType,
1485                                     in GEOM_Object theAx1,
1486                                     in shape_state theState);
1487
1488     /*!
1489      *  Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
1490      *  the specified plane by the certain way, defined through \a theState parameter.
1491      *  \param theShape Shape to find sub-shapes of.
1492      *  \param theShapeType Type of sub-shapes to be retrieved.
1493      *  \param theAx1 Vector (or line, or linear edge), specifying normal
1494      *                direction of the plane to find shapes on.
1495      *  \param thePnt Point specifying location of the plane to find shapes on.
1496      *  \param theState The state of the subshapes to find.
1497      *  \return List of IDs of all found sub-shapes.
1498      */
1499     ListOfLong GetShapesOnPlaneWithLocationIDs (in GEOM_Object theShape,
1500                                                 in long        theShapeType,
1501                                                 in GEOM_Object theAx1,
1502                                                 in GEOM_Object thePnt,
1503                                                 in shape_state theState);
1504
1505     /*!
1506      *  Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
1507      *  the specified cylinder by the certain way, defined through \a theState parameter.
1508      *  \param theShape Shape to find sub-shapes of.
1509      *  \param theShapeType Type of sub-shapes to be retrieved.
1510      *  \param theAxis Vector (or line, or linear edge), specifying
1511      *                 axis of the cylinder to find shapes on.
1512      *  \param theRadius Radius of the cylinder to find shapes on.
1513      *  \param theState The state of the subshapes to find.
1514      *  \return List of IDs of all found sub-shapes.
1515      */
1516     ListOfLong GetShapesOnCylinderIDs (in GEOM_Object theShape,
1517                                        in long        theShapeType,
1518                                        in GEOM_Object theAxis,
1519                                        in double      theRadius,
1520                                        in shape_state theState);
1521
1522     /*!
1523      *  Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
1524      *  the specified sphere by the certain way, defined through \a theState parameter.
1525      *  \param theShape Shape to find sub-shapes of.
1526      *  \param theShapeType Type of sub-shapes to be retrieved.
1527      *  \param theCenter Point, specifying center of the sphere to find shapes on.
1528      *  \param theRadius Radius of the sphere to find shapes on.
1529      *  \param theState The state of the subshapes to find.
1530      *  \return List of IDs of all found sub-shapes.
1531      */
1532     ListOfLong GetShapesOnSphereIDs (in GEOM_Object theShape,
1533                                      in long        theShapeType,
1534                                      in GEOM_Object theCenter,
1535                                      in double      theRadius,
1536                                      in shape_state theState);
1537
1538     /*!
1539      *  Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
1540      *  the specified quadrangle by the certain way, defined through \a theState parameter.
1541      *  \param theShape Shape to find sub-shapes of.
1542      *  \param theShapeType Type of sub-shapes to be retrieved.
1543      *  \param theTopLeftPoint Top left quadrangle corner
1544      *  \param theTopRigthPoint Top right quadrangle corner
1545      *  \param theBottomLeftPoint Bottom left quadrangle corner
1546      *  \param theBottomRigthPoint Bottom right quadrangle corner
1547      *  \param theState The state of the subshapes to find.
1548      *  \return List of IDs of all found sub-shapes.
1549      */
1550     ListOfLong GetShapesOnQuadrangleIDs (in GEOM_Object theShape,
1551                                          in long        theShapeType,
1552                                          in GEOM_Object theTopLeftPoint,
1553                                          in GEOM_Object theTopRigthPoint,
1554                                          in GEOM_Object theBottomLeftPoint,
1555                                          in GEOM_Object theBottomRigthPoint,
1556                                          in shape_state theState);
1557
1558     /*!
1559      * \brief Find subshapes complying with given status
1560      * \param theBox - the box to check state of subshapes against
1561      * \param theShape - the shape to explore
1562      * \param theShapeType - type of subshape of theShape
1563      * \param theState - required state
1564      * \return List of IDs of all found sub-shapes.
1565      */
1566     ListOfLong GetShapesOnBoxIDs (in GEOM_Object theBox,
1567                                   in GEOM_Object theShape,
1568                                   in long        theShapeType,
1569                                   in shape_state theState);
1570
1571     /*!
1572      * \brief Find subshapes complying with given status
1573      * \param theBox - the box to check state of subshapes against
1574      * \param theShape - the shape to explore
1575      * \param theShapeType - type of subshape of theShape
1576      * \param theState - required state
1577      * \return List of all found sub-shapes.
1578      */
1579     ListOfGO GetShapesOnBox (in GEOM_Object theBox,
1580                              in GEOM_Object theShape,
1581                              in long        theShapeType,
1582                              in shape_state theState);
1583
1584     /*!
1585      * \brief Find subshapes complying with given status
1586      * \param theCheckShape - the shape to check state of subshapes against
1587      * \param theShape - the shape to explore
1588      * \param theShapeType - type of subshape of theShape
1589      * \param theState - required state
1590      * \return List of IDs of all found sub-shapes.
1591      */
1592     ListOfLong GetShapesOnShapeIDs (in GEOM_Object theCheckShape,
1593                                     in GEOM_Object theShape,
1594                                     in short       theShapeType,
1595                                     in shape_state theState);
1596
1597     /*!
1598      * \brief Find subshapes complying with given status
1599      * \param theCheckShape - the shape to check state of subshapes against
1600      * \param theShape - the shape to explore
1601      * \param theShapeType - type of subshape of theShape
1602      * \param theState - required state
1603      * \return List of all found sub-shapes.
1604      */
1605     ListOfGO GetShapesOnShape (in GEOM_Object theCheckShape,
1606                                in GEOM_Object theShape,
1607                                in short       theShapeType,
1608                                in shape_state theState);
1609
1610     /*!
1611      * \brief Find subshapes complying with given status
1612      * \param theCheckShape - the shape to check state of subshapes against
1613      * \param theShape - the shape to explore
1614      * \param theShapeType - type of subshape of theShape
1615      * \param theState - required state
1616      * \return compound includes all found sub-shapes.
1617      */
1618     GEOM_Object GetShapesOnShapeAsCompound (in GEOM_Object theCheckShape,
1619                                             in GEOM_Object theShape,
1620                                             in short       theShapeType,
1621                                             in shape_state theState);
1622
1623     /*!
1624      *  Get sub-shape(s) of \a theShapeWhere, which are
1625      *  coincident with \a theShapeWhat or could be a part of it.
1626      *  \param theShapeWhere Shape to find sub-shapes of.
1627      *  \param theShapeWhat Shape, specifying what to find.
1628      *  \return Group of all found sub-shapes or a single found sub-shape.
1629      */
1630     GEOM_Object GetInPlace (in GEOM_Object theShapeWhere,
1631                             in GEOM_Object theShapeWhat);
1632
1633     /*!
1634      *  Get sub-shape(s) of \a theShapeWhere, which are
1635      *  coincident with \a theShapeWhat or could be a part of it.
1636      *
1637      *  Implementation of this method is based on a saved history of an operation,
1638      *  produced \a theShapeWhere. The \a theShapeWhat must be among this operation's
1639      *  arguments (an argument shape or a sub-shape of an argument shape).
1640      *  The operation could be the Partition or one of boolean operations,
1641      *  performed on simple shapes (not on compounds).
1642      *
1643      *  \param theShapeWhere Shape to find sub-shapes of.
1644      *  \param theShapeWhat Shape, specifying what to find.
1645      *  \return Group of all found sub-shapes or a single found sub-shape.
1646      */
1647     GEOM_Object GetInPlaceByHistory (in GEOM_Object theShapeWhere,
1648                                      in GEOM_Object theShapeWhat);
1649
1650     /*!
1651      *  Get sub-shape of theShapeWhere, which are
1652      *  coincident with \a theShapeWhat that can either SOLID, FACE, EDGE or VERTEX.
1653      *  \param theShapeWhere Shape to find sub-shapes of.
1654      *  \param theShapeWhat Shape, specifying what to find.
1655      *  \return found sub-shape.
1656      */
1657     GEOM_Object GetSame (in GEOM_Object theShapeWhere,
1658                          in GEOM_Object theShapeWhat);
1659   };
1660
1661   /*!
1662    *  GEOM_IBlocksOperations: Interface for Blocks construction
1663    *  Face from points or edges, Block from faces,
1664    *  Blocks multi-translation and multi-rotation
1665    */
1666   interface GEOM_IBlocksOperations : GEOM_IOperations
1667   {
1668     /*!
1669      *  Creation of blocks
1670      */
1671
1672     /*!
1673      *  Create a quadrangle face from four edges. Order of Edges is not
1674      *  important. It is  not necessary that edges share the same vertex.
1675      *  \param theEdge1,theEdge2,theEdge3,theEdge4 Edges for the face bound.
1676      *  \return New GEOM_Object, containing the created face.
1677      */
1678     GEOM_Object MakeQuad (in GEOM_Object theEdge1,
1679                           in GEOM_Object theEdge2,
1680                           in GEOM_Object theEdge3,
1681                           in GEOM_Object theEdge4);
1682
1683     /*!
1684      *  Create a quadrangle face on two edges.
1685      *  The missing edges will be built by creating the shortest ones.
1686      *  \param theEdge1,theEdge2 Two opposite edges for the face.
1687      *  \return New GEOM_Object, containing the created face.
1688      */
1689     GEOM_Object MakeQuad2Edges (in GEOM_Object theEdge1,
1690                                 in GEOM_Object theEdge2);
1691
1692     /*!
1693      *  Create a quadrangle face with specified corners.
1694      *  The missing edges will be built by creating the shortest ones.
1695      *  \param thePnt1,thePnt2,thePnt3,thePnt4 Corner vertices for the face.
1696      *  \return New GEOM_Object, containing the created face.
1697      */
1698     GEOM_Object MakeQuad4Vertices (in GEOM_Object thePnt1,
1699                                    in GEOM_Object thePnt2,
1700                                    in GEOM_Object thePnt3,
1701                                    in GEOM_Object thePnt4);
1702
1703     /*!
1704      *  Create a hexahedral solid, bounded by the six given faces. Order of
1705      *  faces is not important. It is  not necessary that Faces share the same edge.
1706      *  \param theFace1-theFace6 Faces for the hexahedral solid.
1707      *  \return New GEOM_Object, containing the created solid.
1708      */
1709     GEOM_Object MakeHexa (in GEOM_Object theFace1,
1710                           in GEOM_Object theFace2,
1711                           in GEOM_Object theFace3,
1712                           in GEOM_Object theFace4,
1713                           in GEOM_Object theFace5,
1714                           in GEOM_Object theFace6);
1715
1716     /*!
1717      *  Create a hexahedral solid between two given faces.
1718      *  The missing faces will be built by creating the smallest ones.
1719      *  \param theFace1,theFace2 Two opposite faces for the hexahedral solid.
1720      *  \return New GEOM_Object, containing the created solid.
1721      */
1722     GEOM_Object MakeHexa2Faces (in GEOM_Object theFace1,
1723                                 in GEOM_Object theFace2);
1724
1725     /*!
1726      *  Extract elements of blocks and blocks compounds
1727      */
1728
1729     /*!
1730      *  Get a vertex, found in the given shape by its coordinates.
1731      *  \param theShape Block or a compound of blocks.
1732      *  \param theX,theY,theZ Coordinates of the sought vertex.
1733      *  \param theEpsilon Maximum allowed distance between the resulting
1734      *                    vertex and point with the given coordinates.
1735      *  \return New GEOM_Object, containing the found vertex.
1736      */
1737     GEOM_Object GetPoint (in GEOM_Object theShape,
1738                           in double      theX,
1739                           in double      theY,
1740                           in double      theZ,
1741                           in double      theEpsilon);
1742
1743     /*!
1744      *  Get an edge, found in the given shape by two given vertices.
1745      *  \param theShape Block or a compound of blocks.
1746      *  \param thePoint1,thePoint2 Points, close to the ends of the desired edge.
1747      *  \return New GEOM_Object, containing the found edge.
1748      */
1749     GEOM_Object GetEdge (in GEOM_Object theShape,
1750                          in GEOM_Object thePoint1,
1751                          in GEOM_Object thePoint2);
1752
1753     /*!
1754      *  Find an edge of the given shape, which has minimal distance to the given point.
1755      *  \param theShape Block or a compound of blocks.
1756      *  \param thePoint Point, close to the desired edge.
1757      *  \return New GEOM_Object, containing the found edge.
1758      */
1759     GEOM_Object GetEdgeNearPoint (in GEOM_Object theShape,
1760                                   in GEOM_Object thePoint);
1761
1762     /*!
1763      *  Returns a face, found in the given shape by four given corner vertices.
1764      *  \param theShape Block or a compound of blocks.
1765      *  \param thePoint1-thePoint4 Points, close to the corners of the desired face.
1766      *  \return New GEOM_Object, containing the found face.
1767      */
1768     GEOM_Object GetFaceByPoints (in GEOM_Object theShape,
1769                                  in GEOM_Object thePoint1,
1770                                  in GEOM_Object thePoint2,
1771                                  in GEOM_Object thePoint3,
1772                                  in GEOM_Object thePoint4);
1773
1774     /*!
1775      *  Get a face of block, found in the given shape by two given edges.
1776      *  \param theShape Block or a compound of blocks.
1777      *  \param theEdge1,theEdge2 Edges, close to the edges of the desired face.
1778      *  \return New GEOM_Object, containing the found face.
1779      */
1780     GEOM_Object GetFaceByEdges (in GEOM_Object theShape,
1781                                 in GEOM_Object theEdge1,
1782                                 in GEOM_Object theEdge2);
1783
1784     /*!
1785      *  Find a face, opposite to the given one in the given block.
1786      *  \param theBlock Must be a hexahedral solid.
1787      *  \param theFace Face of \a theBlock, opposite to the desired face.
1788      *  \return New GEOM_Object, containing the found face.
1789      */
1790     GEOM_Object GetOppositeFace (in GEOM_Object theBlock,
1791                                  in GEOM_Object theFace);
1792
1793     /*!
1794      *  Find a face of the given shape, which has minimal distance to the given point.
1795      *  \param theShape Block or a compound of blocks.
1796      *  \param thePoint Point, close to the desired face.
1797      *  \return New GEOM_Object, containing the found face.
1798      */
1799     GEOM_Object GetFaceNearPoint (in GEOM_Object theShape,
1800                                   in GEOM_Object thePoint);
1801
1802     /*!
1803      *  Find a face of block, whose outside normale has minimal angle with the given vector.
1804      *  \param theShape Block or a compound of blocks.
1805      *  \param theVector Vector, close to the normale of the desired face.
1806      *  \return New GEOM_Object, containing the found face.
1807      */
1808     GEOM_Object GetFaceByNormale (in GEOM_Object theBlock,
1809                                   in GEOM_Object theVector);
1810
1811     /*!
1812      *  Extract blocks from blocks compounds
1813      */
1814
1815     /*!
1816      *  Check, if the compound contains only specified blocks.
1817      *  \param theCompound The compound to check.
1818      *  \param theMinNbFaces If solid has lower number of faces, it is not a block.
1819      *  \param theMaxNbFaces If solid has higher number of faces, it is not a block.
1820      *    \note If theMaxNbFaces = 0, the maximum number of faces is not restricted.
1821      *  \return TRUE, if the given compound contains only blocks.
1822      *  \return theNbBlocks Number of specified blocks in theCompound.
1823      */
1824     boolean IsCompoundOfBlocks (in GEOM_Object theCompound,
1825                                 in long        theMinNbFaces,
1826                                 in long        theMaxNbFaces,
1827                                 out long       theNbBlocks);
1828
1829     /*!
1830      *  Enumeration of Blocks Compound defects.
1831      */
1832     enum BCErrorType
1833     {
1834       /* Each element of the compound should be a Block */
1835       NOT_BLOCK,
1836
1837       /* An element is a potential block, but has degenerated and/or seam edge(s). */
1838       EXTRA_EDGE,
1839
1840       /* A connection between two Blocks should be an entire face or an entire edge */
1841       INVALID_CONNECTION,
1842
1843       /* The compound should be connexe */
1844       NOT_CONNECTED,
1845
1846       /* The glue between two quadrangle faces should be applied */
1847       NOT_GLUED
1848     };
1849
1850     /*!
1851      *  Description of Blocks Compound defect: type and incriminated sub-shapes.
1852      */
1853     struct BCError
1854     {
1855       BCErrorType error;
1856       ListOfLong  incriminated;
1857     };
1858
1859     /*!
1860      *  Sequence of all Blocks Compound defects.
1861      */
1862     typedef sequence<BCError> BCErrors;
1863
1864     /*!
1865      *  Check, if the compound of blocks is given.
1866      *  To be considered as a compound of blocks, the
1867      *  given shape must satisfy the following conditions:
1868      *  - Each element of the compound should be a Block (6 faces and 12 edges).
1869      *  - A connection between two Blocks should be an entire quadrangle face or an entire edge.
1870      *  - The compound should be connexe.
1871      *  - The glue between two quadrangle faces should be applied.
1872      *    \note Single block is also accepted as a valid compound of blocks.
1873      *  \param theCompound The compound to check.
1874      *  \return TRUE, if the given shape is a compound of blocks.
1875      *  \return theErrors Structure, containing discovered errors and incriminated sub-shapes.
1876      */
1877     boolean CheckCompoundOfBlocks (in GEOM_Object theCompound,
1878                                    out BCErrors   theErrors);
1879
1880     /*!
1881      *  Convert sequence of Blocks Compound errors, returned by
1882      *  <VAR>CheckCompoundOfBlocks()</VAR>, into string.
1883      *  \param theCompound The bad compound.
1884      *  \param theErrors The sequence of \a theCompound errors.
1885      *  \return String, describing all the errors in form, suitable for printing.
1886      */
1887     string PrintBCErrors (in GEOM_Object theCompound,
1888                           in BCErrors    theErrors);
1889
1890     /*!
1891      *  Remove all seam and degenerated edges from \a theShape.
1892      *  Unite faces and edges, sharing one surface.
1893      *  \param theShape The compound or single solid to remove irregular edges from.
1894      *  \param theOptimumNbFaces If more than zero, unite faces only for those solids,
1895      *         that have more than theOptimumNbFaces faces. If zero, unite faces always,
1896      *         regardsless their quantity in the solid. If negative, do not unite faces at all.
1897      *         For blocks repairing recommended value is 6.
1898      *  \return Improved shape.
1899      */
1900     GEOM_Object RemoveExtraEdges (in GEOM_Object theShape,
1901                                   in long        theOptimumNbFaces);
1902
1903     /*!
1904      *  Check, if the given shape is a blocks compound.
1905      *  Fix all detected errors.
1906      *    \note Single block can be also fixed by this method.
1907      *  \param theCompound The compound to check and improve.
1908      *  \return Improved compound.
1909      */
1910     GEOM_Object CheckAndImprove (in GEOM_Object theCompound);
1911
1912     /*!
1913      *  Get all the blocks, contained in the given compound.
1914      *  \param theCompound The compound to explode.
1915      *  \param theMinNbFaces If solid has lower number of faces, it is not a block.
1916      *  \param theMaxNbFaces If solid has higher number of faces, it is not a block.
1917      *    \note If theMaxNbFaces = 0, the maximum number of faces is not restricted.
1918      *  \return List of GEOM_Objects, containing the retrieved blocks.
1919      */
1920     ListOfGO ExplodeCompoundOfBlocks (in GEOM_Object theCompound,
1921                                       in long        theMinNbFaces,
1922                                       in long        theMaxNbFaces);
1923
1924     /*!
1925      *  Find block, containing the given point inside its volume or on boundary.
1926      *  \param theCompound Compound, to find block in.
1927      *  \param thePoint Point, close to the desired block. If the point lays on
1928      *         boundary between some blocks, we return block with nearest center.
1929      *  \return New GEOM_Object, containing the found block.
1930      */
1931     GEOM_Object GetBlockNearPoint (in GEOM_Object theCompound,
1932                                    in GEOM_Object thePoint);
1933
1934     /*!
1935      *  Find block, containing all the elements, passed as the parts, or maximum quantity of them.
1936      *  \param theCompound Compound, to find block in.
1937      *  \param theParts List of faces and/or edges and/or vertices to be parts of the found block.
1938      *  \return New GEOM_Object, containing the found block.
1939      */
1940     GEOM_Object GetBlockByParts (in GEOM_Object theCompound,
1941                                  in ListOfGO    theParts);
1942
1943     /*!
1944      *  Return all blocks, containing all the elements, passed as the parts.
1945      *  \param theCompound Compound, to find blocks in.
1946      *  \param theParts List of faces and/or edges and/or vertices to be parts of the found blocks.
1947      *  \return List of GEOM_Objects, containing the found blocks.
1948      */
1949     ListOfGO GetBlocksByParts (in GEOM_Object theCompound,
1950                                in ListOfGO    theParts);
1951
1952     /*!
1953      *  Operations on blocks with gluing of result
1954      */
1955
1956     /*!
1957      *  Multi-transformate block and glue the result.
1958      *  Transformation is defined so, as to superpose theDirFace1 with theDirFace2.
1959      *  \param theBlock Hexahedral solid to be multi-transformed.
1960      *  \param theDirFace1 First direction face global index.
1961      *  \param theDirFace2 Second direction face global index.
1962      *  \param theNbTimes Quantity of transformations to be done.
1963      *    \note Global index of sub-shape can be obtained, using method
1964      *          <VAR>GEOM_IShapesOperations.GetSubShapeIndex()</VAR>.
1965      *  \return New GEOM_Object, containing the result shape.
1966      */
1967     GEOM_Object MakeMultiTransformation1D (in GEOM_Object theBlock,
1968                                            in long        theDirFace1,
1969                                            in long        theDirFace2,
1970                                            in long        theNbTimes);
1971
1972     /*!
1973      *  Multi-transformate block and glue the result.
1974      *  \param theBlock Hexahedral solid to be multi-transformed.
1975      *  \param theDirFace1U,theDirFace2U Direction faces for the first transformation.
1976      *  \param theDirFace1V,theDirFace2V Direction faces for the second transformation.
1977      *  \param theNbTimesU,theNbTimesV Quantity of transformations to be done.
1978      *  \return New GEOM_Object, containing the result shape.
1979      */
1980     GEOM_Object MakeMultiTransformation2D (in GEOM_Object theBlock,
1981                                            in long        theDirFace1U,
1982                                            in long        theDirFace2U,
1983                                            in long        theNbTimesU,
1984                                            in long        theDirFace1V,
1985                                            in long        theDirFace2V,
1986                                            in long        theNbTimesV);
1987
1988     /*!
1989      *  Special operation - propagation
1990      */
1991
1992     /*!
1993      *  Build all possible propagation groups.
1994      *  Propagation group is a set of all edges, opposite to one (main)
1995      *  edge of this group directly or through other opposite edges.
1996      *  Notion of Opposite Edge make sence only on quadrangle face.
1997      *  \param theShape Shape to build propagation groups on.
1998      *  \return List of GEOM_Objects, each of them is a propagation group.
1999      */
2000     ListOfGO Propagate (in GEOM_Object theShape);
2001   };
2002
2003   /*!
2004    *  GEOM_IBooleanOperations: Interface for boolean operations (Cut, Fuse, Common)
2005    */
2006   interface GEOM_IBooleanOperations : GEOM_IOperations
2007   {
2008     /*!
2009      *  Perform one of boolean operations on two given shapes.
2010      *  \param theShape1 First argument for boolean operation.
2011      *  \param theShape2 Second argument for boolean operation.
2012      *  \param theOperation Indicates the operation to be done:
2013      *                      1 - Common, 2 - Cut, 3 - Fuse, 4 - Section.
2014      *  \return New GEOM_Object, containing the result shape.
2015      */
2016     GEOM_Object MakeBoolean (in GEOM_Object theShape1,
2017                              in GEOM_Object theShape2,
2018                              in long theOperation);
2019
2020     /*!
2021      *  Perform partition operation.
2022      *  \param theShapes Shapes to be intersected.
2023      *  \param theTools Shapes to intersect theShapes.
2024      *  \note  Each compound from ListShapes and ListTools will be exploded in order
2025      *         to avoid possible intersection between shapes from this compound.
2026      *  \param theLimit Type of resulting shapes (corresponding to TopAbs_ShapeEnum).
2027      #  \param KeepNonlimitShapes: if this parameter == 0 - only shapes with
2028      #                             type <= Limit are kept in the result,
2029      #                             else - shapes with type > Limit are kept
2030      #                             also (if they exist)
2031      *
2032      *  After implementation new version of PartitionAlgo (October 2006)
2033      *  other parameters are ignored by current functionality. They are kept
2034      *  in this function only for supporting old versions.
2035      *  Ignored parameters:
2036      *  \param theKeepInside Shapes, outside which the results will be deleted.
2037      *         Each shape from theKeepInside must belong to theShapes also.
2038      *  \param theRemoveInside Shapes, inside which the results will be deleted.
2039      *         Each shape from theRemoveInside must belong to theShapes also.
2040      *  \param theRemoveWebs If TRUE, perform Glue 3D algorithm.
2041      *  \param theMaterials Material indices for each shape. Make sence, only if theRemoveWebs is TRUE.
2042      *
2043      *  \return New GEOM_Object, containing the result shapes.
2044      */
2045     GEOM_Object MakePartition (in ListOfGO   theShapes,
2046                                in ListOfGO   theTools,
2047                                in ListOfGO   theKeepInside,
2048                                in ListOfGO   theRemoveInside,
2049                                in short      theLimit,
2050                                in boolean    theRemoveWebs,
2051                                in ListOfLong theMaterials,
2052                                in short      theKeepNonlimitShapes);
2053
2054     /*!
2055      *  Perform partition operation.
2056      *  This method may be usefull if it is needed to make a partition for
2057      *  a compound containing nonintersected shapes. Performance will be better
2058      *  since intersection between shapes from compound is not performed.
2059      *
2060      *  Description of all parameters as in previous method MakePartition()
2061      *
2062      *  \note Passed compounds (via ListShapes or via ListTools)
2063      *        have to consist of nonintersecting shapes.
2064      *
2065      *  \return New GEOM_Object, containing the result shapes.
2066      */
2067     GEOM_Object MakePartitionNonSelfIntersectedShape (in ListOfGO   theShapes,
2068                                                       in ListOfGO   theTools,
2069                                                       in ListOfGO   theKeepInside,
2070                                                       in ListOfGO   theRemoveInside,
2071                                                       in short      theLimit,
2072                                                       in boolean    theRemoveWebs,
2073                                                       in ListOfLong theMaterials,
2074                                                       in short      theKeepNonlimitShapes);
2075
2076     /*!
2077      *  Perform partition of the Shape with the Plane
2078      *  \param theShape Shape to be intersected.
2079      *  \param thePlane Tool shape, to intersect theShape.
2080      *  \return New GEOM_Object, containing the result shape.
2081      */
2082     GEOM_Object MakeHalfPartition (in GEOM_Object theShape,
2083                                    in GEOM_Object thePlane);
2084   };
2085
2086   /*!
2087    *  GEOM_ICurvesOperations: Interface for curves creation.
2088    *  Polyline, Circle, Spline (Bezier and Interpolation)
2089    */
2090   interface GEOM_ICurvesOperations : GEOM_IOperations
2091   {
2092     /*!
2093      *  Create a circle with given center, normal vector and radius.
2094      *  \param thePnt Circle center.
2095      *  \param theVec Vector, normal to the plane of the circle.
2096      *  \param theR Circle radius.
2097      *  \return New GEOM_Object, containing the created circle.
2098      */
2099     GEOM_Object MakeCirclePntVecR (in GEOM_Object thePnt,
2100                                    in GEOM_Object theVec,
2101                                    in double theR);
2102     /*!
2103      *  Create a circle, passing through three given points
2104      *  \param thePnt1,thePnt2,thePnt3 Points, defining the circle.
2105      *  \return New GEOM_Object, containing the created circle.
2106      */
2107     GEOM_Object MakeCircleThreePnt (in GEOM_Object thePnt1,
2108                                     in GEOM_Object thePnt2,
2109                                     in GEOM_Object thePnt3);
2110     /*!
2111      *  Create a circle with given center, with a radius equals the distance from center to Point1
2112      *  and on a plane defined by all of three points.
2113      *  \param thePnt1,thePnt2,thePnt3 Points, defining the circle.
2114      *  \return New GEOM_Object, containing the created circle.
2115      */
2116     GEOM_Object MakeCircleCenter2Pnt (in GEOM_Object thePnt1,
2117                                       in GEOM_Object thePnt2,
2118                                       in GEOM_Object thePnt3);
2119     /*!
2120      *  Create an ellipse with given center, normal vector and radiuses.
2121      *  \param thePnt Ellipse center.
2122      *  \param theVec Vector, normal to the plane of the ellipse.
2123      *  \param theRMajor Major ellipse radius.
2124      *  \param theRMinor Minor ellipse radius.
2125      *  \return New GEOM_Object, containing the created ellipse.
2126      */
2127     GEOM_Object MakeEllipse (in GEOM_Object thePnt,
2128                              in GEOM_Object theVec,
2129                              in double theRMajor,
2130                              in double theRMinor);
2131
2132     /*!
2133      *  Create an ellipse with given center, normal vector, main axis vector and radiuses.
2134      *  \param thePnt Ellipse center.
2135      *  \param theVec Vector, normal to the plane of the ellipse.
2136      *  \param theRMajor Major ellipse radius.
2137      *  \param theRMinor Minor ellipse radius.
2138      *  \param theVecMaj Vector, direction of the ellipse's main axis.
2139      *  \return New GEOM_Object, containing the created ellipse.
2140      */
2141     GEOM_Object MakeEllipseVec (in GEOM_Object thePnt,
2142                                 in GEOM_Object theVec,
2143                                 in double theRMajor,
2144                                 in double theRMinor,
2145                                 in GEOM_Object theVecMaj);
2146
2147     /*!
2148      *  Create an arc of circle, passing through three given points.
2149      *  \param thePnt1 Start point of the arc.
2150      *  \param thePnt2 Middle point of the arc.
2151      *  \param thePnt3 End point of the arc.
2152      *  \return New GEOM_Object, containing the created arc.
2153      */
2154     GEOM_Object MakeArc (in GEOM_Object thePnt1,
2155                          in GEOM_Object thePnt2,
2156                          in GEOM_Object thePnt3);
2157
2158     /*!
2159      *  Create an arc of circle of center C from one point to another
2160      *  \param theCenter Center point of the arc.
2161      *  \param thePnt1 Start point of the arc.
2162      *  \param thePnt2 End point of the arc.
2163      *  \param theSense Orientation of the arc
2164      *  \return New GEOM_Object, containing the created arc.
2165      */
2166     GEOM_Object MakeArcCenter (in GEOM_Object theCenter,
2167                                in GEOM_Object thePnt1,
2168                                in GEOM_Object thePnt2,
2169                                in boolean theSense);
2170                                
2171     /*!
2172      *  Create an arc of ellipse of center C and two points P1 P2.
2173      *  \param theCenter Center point of the arc.
2174      *  \param thePnt1 Major radius is distance from center to Pnt1.
2175      *  \param thePnt2 define a plane and Minor radius as a shortest distance from Pnt2 to vector Center->Pnt1.
2176      *  \return New GEOM_Object, containing the created arc.
2177      */
2178     GEOM_Object MakeArcOfEllipse (in GEOM_Object theCenter,
2179                                   in GEOM_Object thePnt1,
2180                                   in GEOM_Object thePnt2);
2181
2182
2183     /*!
2184      *  Create a polyline on the set of points.
2185      *  \param thePoints Sequence of points for the polyline.
2186      *  \return New GEOM_Object, containing the created polyline.
2187      */
2188     GEOM_Object MakePolyline (in ListOfGO thePoints);
2189
2190     /*!
2191      *  Create bezier curve on the set of points.
2192      *  \param thePoints Sequence of points for the bezier curve.
2193      *  \return New GEOM_Object, containing the created bezier curve.
2194      */
2195     GEOM_Object MakeSplineBezier (in ListOfGO thePoints);
2196
2197     /*!
2198      *  Create B-Spline curve on the set of points.
2199      *  \param thePoints Sequence of points for the B-Spline curve.
2200      *  \return New GEOM_Object, containing the created B-Spline curve.
2201      */
2202     GEOM_Object MakeSplineInterpolation (in ListOfGO thePoints);
2203
2204     /*!
2205      *  Create a sketcher (wire or face), following the textual description,
2206      *  passed through \a theCommand argument. \n
2207      *  Edges of the resulting wire or face will be arcs of circles and/or linear segments. \n
2208      *  Format of the description string have to be the following:
2209      *
2210      *  "Sketcher[:F x1 y1]:CMD[:CMD[:CMD...]]"
2211      *
2212      *  Where:
2213      *  - x1, y1 are coordinates of the first sketcher point (zero by default),
2214      *  - CMD is one of
2215      *     - "R angle" : Set the direction by angle
2216      *     - "D dx dy" : Set the direction by DX & DY
2217      *     .
2218      *       \n
2219      *     - "TT x y" : Create segment by point at X & Y
2220      *     - "T dx dy" : Create segment by point with DX & DY
2221      *     - "L length" : Create segment by direction & Length
2222      *     - "IX x" : Create segment by direction & Intersect. X
2223      *     - "IY y" : Create segment by direction & Intersect. Y
2224      *     .
2225      *       \n
2226      *     - "C radius length" : Create arc by direction, radius and length(in degree)
2227      *     .
2228      *       \n
2229      *     - "WW" : Close Wire (to finish)
2230      *     - "WF" : Close Wire and build face (to finish)
2231      *
2232      *  \param theCommand String, defining the sketcher in local
2233      *                    coordinates of the working plane.
2234      *  \param theWorkingPlane Nine double values, defining origin,
2235      *                         OZ and OX directions of the working plane.
2236      *  \return New GEOM_Object, containing the created wire.
2237      */
2238     GEOM_Object MakeSketcher (in string theCommand, in ListOfDouble theWorkingPlane);
2239     
2240     /*!
2241      *  Create a 3D sketcher, following the numerical description,
2242      *  passed through points created by \a theCoordinates argument. \n
2243      *  Format of the description string have to be the following:
2244      *
2245      *  "Make3DSketcher[x1, y1, z1, x2, y2, z2, ..., xN, yN, zN]"
2246      */
2247     
2248     GEOM_Object Make3DSketcher (in ListOfDouble theCoordinates);
2249
2250       /*!
2251      *  Create a sketcher (wire or face), following the textual description,
2252      *  passed through \a theCommand argument. \n
2253      *  For format of the description string see the previous method.\n
2254      *  \param theCommand String, defining the sketcher in local
2255      *                    coordinates of the working plane.
2256      *  \param theWorkingPlane Planar Face or LCS(Marker) of the working plane.
2257      *  \return New GEOM_Object, containing the created wire.
2258      */
2259     GEOM_Object MakeSketcherOnPlane (in string theCommand, in GEOM_Object theWorkingPlane);
2260   };
2261
2262   /*!
2263    *  GEOM_ILocalOperations: Interface for fillet and chamfer creation.
2264    */
2265   interface GEOM_ILocalOperations : GEOM_IOperations
2266   {
2267     /*!
2268      *  Perform a fillet on all edges of the given shape.
2269      *  \param theShape Shape, to perform fillet on.
2270      *  \param theR Fillet radius.
2271      *  \return New GEOM_Object, containing the result shape.
2272      */
2273     GEOM_Object MakeFilletAll (in GEOM_Object theShape,
2274                                in double      theR);
2275
2276     /*!
2277      *  Perform a fillet on the specified edges of the given shape
2278      *  \param theShape Shape, to perform fillet on.
2279      *  \param theR Fillet radius.
2280      *  \param theEdges Global indices of edges to perform fillet on.
2281      *    \note Global index of sub-shape can be obtained, using method
2282      *          <VAR>GEOM_IShapesOperations.GetSubShapeIndex()</VAR>.
2283      *  \return New GEOM_Object, containing the result shape.
2284      */
2285     GEOM_Object MakeFilletEdges (in GEOM_Object theShape,
2286                                  in double      theR,
2287                                  in ListOfLong  theEdges);
2288     GEOM_Object MakeFilletEdgesR1R2 (in GEOM_Object theShape,
2289                                      in double      theR1,
2290                                      in double      theR2,
2291                                      in ListOfLong  theEdges);
2292
2293     /*!
2294      *  Perform a fillet on all edges of the specified faces of the given shape.
2295      *  \param theShape Shape, to perform fillet on.
2296      *  \param theR Fillet radius.
2297      *  \param theFaces Global indices of faces to perform fillet on.
2298      *    \note Global index of sub-shape can be obtained, using method
2299      *          <VAR>GEOM_IShapesOperations.GetSubShapeIndex()</VAR>.
2300      *  \return New GEOM_Object, containing the result shape.
2301      */
2302     GEOM_Object MakeFilletFaces (in GEOM_Object theShape,
2303                                  in double      theR,
2304                                  in ListOfLong  theFaces);
2305                                  
2306     GEOM_Object MakeFilletFacesR1R2 (in GEOM_Object theShape,
2307                                      in double      theR1,
2308                                      in double      theR2,
2309                                      in ListOfLong  theFaces);
2310                                      
2311     /*!
2312      *  Perform a fillet on face of the specified vertexes of the given shape.
2313      *  \param theShape Shape, to perform fillet on.
2314      *  \param theR Fillet radius.
2315      *  \param theVertexes Global indices of vertexes to perform fillet on.
2316      *    \note Global index of sub-shape can be obtained, using method
2317      *          <VAR>GEOM_IShapesOperations.GetSubShapeIndex()</VAR>.
2318      *  \return New GEOM_Object, containing the result shape.
2319      */
2320     GEOM_Object MakeFillet2D (in GEOM_Object theShape,
2321                               in double      theR,
2322                               in ListOfLong  theVertexes);
2323
2324     /*!
2325      *  Perform a symmetric chamfer on all edges of the given shape.
2326      *  \param theShape Shape, to perform chamfer on.
2327      *  \param theD Chamfer size along each face.
2328      *  \return New GEOM_Object, containing the result shape.
2329      */
2330     GEOM_Object MakeChamferAll (in GEOM_Object theShape,
2331                                 in double      theD);
2332
2333     /*!
2334      *  Perform a chamfer on edges, common to the specified faces.
2335      *  with distance D1 on the Face1
2336      *  \param theShape Shape, to perform chamfer on.
2337      *  \param theD1 Chamfer size along \a theFace1.
2338      *  \param theD2 Chamfer size along \a theFace2.
2339      *  \param theFace1,theFace2 Global indices of two faces of \a theShape.
2340      *    \note Global index of sub-shape can be obtained, using method
2341      *          <VAR>GEOM_IShapesOperations.GetSubShapeIndex()</VAR>.
2342      *  \return New GEOM_Object, containing the result shape.
2343      */
2344     GEOM_Object MakeChamferEdge (in GEOM_Object theShape,
2345                                  in double theD1, in double theD2,
2346                                  in long theFace1, in long theFace2);
2347     /*!
2348      *  The Same but with params theD = Chamfer Lenght
2349      *  and theAngle = Chamfer Angle (Angle in radians)
2350      */
2351     GEOM_Object MakeChamferEdgeAD (in GEOM_Object theShape,
2352                                    in double theD, in double theAngle,
2353                                    in long theFace1, in long theFace2);
2354
2355     /*!
2356      *  Perform a chamfer on all edges of the specified faces.
2357      *  with distance D1 on the first specified face (if several for one edge)
2358      *  \param theShape Shape, to perform chamfer on.
2359      *  \param theD1 Chamfer size along face from \a theFaces. If both faces,
2360      *               connected to the edge, are in \a theFaces, \a theD1
2361      *               will be get along face, which is nearer to \a theFaces beginning.
2362      *  \param theD2 Chamfer size along another of two faces, connected to the edge.
2363      *  \param theFaces Sequence of global indices of faces of \a theShape.
2364      *    \note Global index of sub-shape can be obtained, using method
2365      *          <VAR>GEOM_IShapesOperations.GetSubShapeIndex()</VAR>.
2366      *  \return New GEOM_Object, containing the result shape.
2367      */
2368     GEOM_Object MakeChamferFaces (in GEOM_Object theShape,
2369                                   in double theD1, in double theD2,
2370                                   in ListOfLong theFaces);
2371     /*!
2372      *  The Same but with params theD = Chamfer Lenght
2373      *  and theAngle = Chamfer Angle (Angle in radians)
2374      */
2375     GEOM_Object MakeChamferFacesAD (in GEOM_Object theShape,
2376                                     in double theD, in double theAngle,
2377                                     in ListOfLong theFaces);
2378
2379    /*!
2380     *  Perform a chamfer on edges,
2381     *  with distance D1 on the first specified face (if several for one edge)
2382     *  \param theShape Shape, to perform chamfer on.
2383     *  \param theD1 theD2 Chamfer size
2384     *  \param theEdges Sequence of edges of \a theShape.
2385     *  \return New GEOM_Object, containing the result shape.
2386     */
2387     GEOM_Object MakeChamferEdges (in GEOM_Object theShape,
2388                                   in double theD1, in double theD2,
2389                                   in ListOfLong theEdges);
2390     /*!
2391      *  The Same but with params theD = Chamfer Lenght
2392      *  and theAngle = Chamfer Angle (Angle in radians)
2393      */
2394     GEOM_Object MakeChamferEdgesAD (in GEOM_Object theShape,
2395                                     in double theD, in double theAngle,
2396                                     in ListOfLong theEdges);
2397
2398     /*!
2399      *  Perform an Archimde operation on the given shape with given parameters.
2400      *                    The object presenting the resulting face is returned
2401      *  \param theShape Shape to be put in water.
2402      *  \param theWeight Weight og the shape.
2403      *  \param theWaterDensity Density of the water.
2404      *  \param theMeshDeflection Deflection od the mesh, using to compute the section.
2405      *  \return New GEOM_Object, containing a section of \a theShape
2406      *          by a plane, corresponding to water level.
2407      */
2408     GEOM_Object MakeArchimede (in GEOM_Object theShape,
2409                                in double theWeight,
2410                                in double theWaterDensity,
2411                                in double theMeshDeflection);
2412
2413     /*!
2414      *  Duplicates <VAR>GEOM_IShapesOperations.GetSubShapeIndex()</VAR>.
2415      *  Present here only for compatibility.
2416      */
2417     long GetSubShapeIndex (in GEOM_Object theShape, in GEOM_Object theSubShape);
2418   };
2419
2420   /*!
2421    *  GEOM_IHealingOperations: Interface for shape healing operations.
2422    *  Shape Processing, SuppressFaces, etc.
2423    */
2424   interface GEOM_IHealingOperations : GEOM_IOperations
2425   {
2426     /*!
2427      *  Apply a sequence of Shape Healing operators to the given object.
2428      *  \param theShapes Shape to be processed.
2429      *  \param theOperators List of names of operators ("FixShape", "SplitClosedFaces", etc.).
2430      *  \param theParameters List of names of parameters
2431      *                    ("FixShape.Tolerance3d", "SplitClosedFaces.NbSplitPoints", etc.).
2432      *  \param theValues List of values of parameters, in the same order
2433      *                    as parameters are listed in \a theParameters list.
2434      *  \return New GEOM_Object, containing processed shape.
2435      */
2436     GEOM_Object ProcessShape (in GEOM_Object theShapes,
2437                               in string_array theOperators,
2438                               in string_array theParameters,
2439                               in string_array theValues);
2440
2441     /*!
2442      *  Get default sequence of operators, their parameters and parameters' values
2443      *  of Shape Process operation. In the current implementation the defaults are
2444      *  read from the file pointed by CSF_ShHealingDefaults environmental variable.
2445      *  \param theOperators Output. Default list of names of operators.
2446      *  \param theParameters Output. Default list of names of parameters.
2447      *  \param theValues Output. List of default values of parameters, in the same order
2448      *                           as parameters are listed in \a theParameters list.
2449      */
2450     void GetShapeProcessParameters (out string_array theOperators,
2451                                     out string_array theParameters,
2452                                     out string_array theValues);
2453     /*!
2454      *  Get parameters and parameters' values for the given Shape Process operation.
2455      *  In the current implementation the defaults are
2456      *  read from the file pointed by CSF_ShHealingDefaults environmental variable.
2457      *  \param theOperator Input. The operator's name.
2458      *  \param theParameters Output. Default list of names of parameters.
2459      *  \param theValues Output. List of default values of parameters, in the same order
2460      *                           as parameters are listed in \a theParameters list.
2461      */
2462     void GetOperatorParameters (in string theOperator,
2463                                 out string_array theParameters,
2464                                 out string_array theValues);
2465
2466     /*!
2467      *  Remove faces from the given object (shape).
2468      *  \param theObject Shape to be processed.
2469      *  \param theFaces Indices of faces to be removed, if EMPTY then the method
2470      *                  removes ALL faces of the given object.
2471      *  \return New GEOM_Object, containing processed shape.
2472      */
2473     GEOM_Object SuppressFaces (in GEOM_Object theObject, in short_array theFaces);
2474
2475     /*!
2476      *  Close an open wire.
2477      *  \param theObject Shape to be processed.
2478      *  \param theWires Indexes of edge(s) and wire(s) to be closed within <VAR>theObject</VAR>'s shape,
2479      *                  if -1, then theObject itself is a wire.
2480      *  \param isCommonVertex If TRUE : closure by creation of a common vertex,
2481      *                        If FALS : closure by creation of an edge between ends.
2482      *  \return New GEOM_Object, containing processed shape.
2483      */
2484     GEOM_Object CloseContour (in GEOM_Object theObject, in short_array theWires,
2485                               in boolean isCommonVertex);
2486
2487     /*!
2488      *  Remove internal wires and edges from the given object (face).
2489      *  \param theObject Shape to be processed.
2490      *  \param theWires Indices of wires to be removed, if EMPTY then the method
2491      *                  removes ALL internal wires of the given object.
2492      *  \return New GEOM_Object, containing processed shape.
2493      */
2494     GEOM_Object RemoveIntWires (in GEOM_Object theObject, in short_array theWires);
2495
2496     /*!
2497      *  Remove internal closed contours (holes) from the given object.
2498      *  \param theObject Shape to be processed.
2499      *  \param theWires Indices of wires to be removed, if EMPTY then the method
2500      *                  removes ALL internal holes of the given object
2501      *  \return New GEOM_Object, containing processed shape.
2502      */
2503     GEOM_Object FillHoles (in GEOM_Object theObject, in short_array theWires);
2504
2505     /*!
2506      *  Sewing of the given object.
2507      *  \param theObject Shape to be processed.
2508      *  \param theTolerance Required tolerance value.
2509      *  \return New GEOM_Object, containing processed shape.
2510      */
2511     GEOM_Object Sew (in GEOM_Object theObject, in double theTolerance);
2512
2513     /*!
2514      *  Addition of a point to a given edge object.
2515      *  \param theObject Shape to be processed.
2516      *  \param theEdgeIndex Index of edge to be divided within theObject's shape,
2517      *                      if -1, then theObject itself is the edge.
2518      *  \param theValue Value of parameter on edge or length parameter,
2519      *                  depending on \a isByParameter.
2520      *  \param isByParameter If TRUE : \a theValue is treated as a curve parameter [0..1],
2521      *                       if FALSE : \a theValue is treated as a length parameter [0..1]
2522      *  \return New GEOM_Object, containing processed shape.
2523      */
2524     GEOM_Object DivideEdge (in GEOM_Object theObject, in short theEdgeIndex,
2525                             in double theValue, in boolean isByParameter);
2526
2527     /*!
2528      *  Get a list of wires (wrapped in GEOM_Object-s),
2529      *  that constitute a free boundary of the given shape.
2530      *  \param theObject Shape to get free boundary of.
2531      *  \param theClosedWires Output. Closed wires on the free boundary of the given shape.
2532      *  \param theOpenWires Output. Open wires on the free boundary of the given shape.
2533      *  \return FALSE, if an error(s) occured during the method execution.
2534      */
2535     boolean GetFreeBoundary (in GEOM_Object theObject,
2536                              out ListOfGO theClosedWires,
2537                              out ListOfGO theOpenWires);
2538
2539     /*!
2540      *  Change orientation of the given object.
2541      *  \param theObject Shape to be processed.
2542      *  \return New GEOM_Object, containing processed shape.
2543      */
2544     GEOM_Object ChangeOrientation (in GEOM_Object theObject);
2545     GEOM_Object ChangeOrientationCopy (in GEOM_Object theObject);
2546
2547   };
2548
2549   /*!
2550    *  GEOM_IInsertOperations: Interface for shape insert operations (like copy, import).
2551    *
2552    */
2553   interface GEOM_IInsertOperations : GEOM_IOperations
2554   {
2555     /*!
2556      *  Create a copy of the given object
2557      */
2558     GEOM_Object MakeCopy (in GEOM_Object theOriginal);
2559
2560     /*!
2561      *  Export the given shape into a file with given name.
2562      *  \param theObject Shape to be stored in the file.
2563      *  \param theFileName Name of the file to store the given shape in.
2564      *  \param theFormatName Specify format for the shape storage.
2565      *         Available formats can be obtained with <VAR>ImportTranslators()</VAR> method.
2566      */
2567     void Export (in GEOM_Object theObject, in string theFileName, in string theFormatName);
2568
2569     /*!
2570      *  Import a shape from the BRep or IGES or STEP file
2571      *  (depends on given format) with given name.
2572      *  \param theFileName The file, containing the shape.
2573      *  \param theFormatName Specify format for the file reading.
2574      *         Available formats can be obtained with <VAR>ImportTranslators()</VAR> method.
2575      *  \return New GEOM_Object, containing the imported shape.
2576      */
2577     GEOM_Object Import (in string theFileName, in string theFormatName);
2578
2579     /*!
2580      *  Get the supported import formats and corresponding patterns for File dialog.
2581      *  \param theFormats Output. List of formats, available for import.
2582      *  \param thePatterns Output. List of file patterns, corresponding to available formats.
2583      *  \return Returns available formats and patterns through the arguments.
2584      */
2585     void ImportTranslators (out string_array theFormats,
2586                             out string_array thePatterns);
2587
2588     /*!
2589      *  Get the supported export formats and corresponding patterns for File dialog.
2590      *  \param theFormats Output. List of formats, available for export.
2591      *  \param thePatterns Output. List of file patterns, corresponding to available formats.
2592      *  \return Returns available formats and patterns through the arguments.
2593      */
2594     void ExportTranslators (out string_array theFormats,
2595                             out string_array thePatterns);
2596   };
2597
2598   /*!
2599    *  GEOM_IKindOfShape: namespace for shape_kind enumeration.
2600    */
2601   interface GEOM_IKindOfShape
2602   {
2603     enum shape_kind {
2604       NO_SHAPE,
2605       // COMPOSITEs
2606       COMPOUND,
2607       COMPSOLID,
2608       SHELL,
2609       WIRE,
2610       // SOLIDs
2611       SPHERE,       // full sphere
2612       CYLINDER,     // cylinder
2613       BOX,          // box with faces, parallel to global coordinate planes
2614       ROTATED_BOX,  // other box
2615       TORUS,        // full torus
2616       CONE,         // cone
2617       POLYHEDRON,   // solid, bounded by polygons
2618       SOLID,        // other solid
2619       // FACEs
2620       SPHERE2D,     // spherical face (closed)
2621       CYLINDER2D,   // cylindrical face with defined height
2622       TORUS2D,      // toroidal face (closed)
2623       CONE2D,       // conical face with defined height
2624       DISK_CIRCLE,  // planar, bounded by circle
2625       DISK_ELLIPSE, // planar, bounded by ellipse
2626       POLYGON,      // planar, bounded by segments
2627       PLANE,        // infinite planar
2628       PLANAR,       // other planar
2629       FACE,         // other face
2630       // EDGEs
2631       CIRCLE,       // full circle
2632       ARC_CIRCLE,   // arc of circle
2633       ELLIPSE,      // full ellipse
2634       ARC_ELLIPSE,  // arc of ellipse
2635       LINE,         // infinite segment
2636       SEGMENT,      // segment
2637       EDGE,         // other edge
2638       // VERTEX
2639       VERTEX
2640     };
2641   };
2642
2643
2644   /*!
2645    *  GEOM_IMeasureOperations: Interface for measurement (distance, whatis) and
2646    *  properties calculation (like Centre of Mass, Inertia, etc.).
2647    *
2648    */
2649   interface GEOM_IMeasureOperations : GEOM_IOperations
2650   {
2651     /*!
2652      *  Get kind of theShape.
2653      *  \param theShape Shape to get a kind of.
2654      *  \param theIntegers Output. Integer and enumerated shape's parameters
2655      *                     (kind of surface, closed/unclosed, number of edges, etc.)
2656      *  \param theDoubles  Output. Double shape's parameters (coordinates, dimensions, etc.)
2657      *  \note  Concrete meaning of each value, returned via \a theIntegers
2658      *         or \a theDoubles list depends on the kind of the shape.
2659      *  \return Returns a kind of shape in terms of <VAR>GEOM_IKindOfShape.shape_kind</VAR> enumeration.
2660      */
2661     //short KindOfShape (in GEOM_Object   theShape,
2662     GEOM_IKindOfShape::shape_kind KindOfShape (in  GEOM_Object  theShape,
2663                                                out ListOfLong   theIntegers,
2664                                                out ListOfDouble theDoubles);
2665
2666     /*!
2667      *  Get position (LCS) of theShape.
2668      *  \param theShape Shape to calculate position of.
2669      *  \param Ox,Oy,Oz Output. Coordinates of shape's location origin.
2670      *                  Origin of the LCS is situated at the shape's center of mass.
2671      *  \param Zx,Zy,Zz Output. Coordinates of shape's location normal(main) direction.
2672      *  \param Xx,Xy,Xz Output. Coordinates of shape's location X direction.
2673      *                  Axes of the LCS are obtained from shape's location or,
2674      *                  if the shape is a planar face, from position of its plane.
2675      *  \return Returns position of the shape through the last nine arguments.
2676      */
2677     void GetPosition (in GEOM_Object theShape,
2678                       out double Ox, out double Oy, out double Oz,
2679                       out double Zx, out double Zy, out double Zz,
2680                       out double Xx, out double Xy, out double Xz);
2681
2682     /*!
2683      *  Get summarized length of all wires,
2684      *  area of surface and volume of the given shape.
2685      *  \param theShape Shape to define properties of.
2686      *  \param theLength Output. Summarized length of all wires of the given shape.
2687      *  \param theSurfArea Output. Area of surface of the given shape.
2688      *  \param theVolume Output. Volume of the given shape.
2689      *  \return Returns shape properties through the last three arguments.
2690      */
2691     void GetBasicProperties (in GEOM_Object theShape,
2692                              out double theLength,
2693                              out double theSurfArea,
2694                              out double theVolume);
2695
2696     /*!
2697      *  Get a point, situated at the centre of mass of theShape.
2698      *  \param theShape Shape to define centre of mass of.
2699      *  \return New GEOM_Object, containing the created point.
2700      */
2701     GEOM_Object GetCentreOfMass (in GEOM_Object theShape);
2702
2703     /*!
2704      *  Get a vector, representing the normal of theFace.
2705      *  If the face is not planar, theOptionalPoint is obligatory.
2706      *  \param theFace Shape (face) to define the normal of.
2707      *  \param theOptionalPoint Shape (point) to define the normal at.
2708      *                          Can be NULL in case of planar face.
2709      *  \return New GEOM_Object, containing the created normal vector.
2710      */
2711     GEOM_Object GetNormal (in GEOM_Object theFace,
2712                            in GEOM_Object theOptionalPoint);
2713
2714     /*!
2715      *  Get inertia matrix and moments of inertia of theShape.
2716      *  \param theShape Shape to calculate inertia of.
2717      *  \param I(1-3)(1-3) Output. Components of the inertia matrix of the given shape.
2718      *  \param Ix,Iy,Iz Output. Moments of inertia of the given shape.
2719      *  \return Returns inertia through the last twelve arguments.
2720      */
2721     void GetInertia (in GEOM_Object theShape,
2722                      out double I11, out double I12, out double I13,
2723                      out double I21, out double I22, out double I23,
2724                      out double I31, out double I32, out double I33,
2725                      out double Ix , out double Iy , out double Iz);
2726
2727     /*!
2728      *  Get parameters of bounding box of the given shape
2729      *  \param theShape Shape to obtain bounding box of.
2730      *  \param Xmin,Xmax Output. Limits of shape along OX axis.
2731      *  \param Ymin,Ymax Output. Limits of shape along OY axis.
2732      *  \param Zmin,Zmax Output. Limits of shape along OZ axis.
2733      *  \return Returns parameters of bounding box through the last six arguments.
2734      */
2735     void GetBoundingBox (in GEOM_Object theShape,
2736                          out double Xmin, out double Xmax,
2737                          out double Ymin, out double Ymax,
2738                          out double Zmin, out double Zmax);
2739
2740     /*!
2741      *  Get min and max tolerances of sub-shapes of theShape
2742      *  \param theShape Shape, to get tolerances of.
2743      *  \param FaceMin,FaceMax Output. Min and max tolerances of the faces.
2744      *  \param EdgeMin,EdgeMax Output. Min and max tolerances of the edges.
2745      *  \param VertMin,VertMax Output. Min and max tolerances of the vertices.
2746      *  \return Returns shape tolerances through the last six arguments.
2747      */
2748     void GetTolerance (in GEOM_Object theShape,
2749                        out double FaceMin, out double FaceMax,
2750                        out double EdgeMin, out double EdgeMax,
2751                        out double VertMin, out double VertMax);
2752
2753     /*!
2754      *  Check a topology of the given shape.
2755      *  \param theShape Shape to check validity of.
2756      *  \param theDescription Output. Description of problems in the shape, if they are.
2757      *  \return TRUE, if the shape "seems to be valid" from the topological point of view.
2758      */
2759     boolean CheckShape (in GEOM_Object theShape,
2760                         out string     theDescription);
2761
2762     /*!
2763      *  Check a topology and a geometry of the given shape.
2764      *  \param theShape Shape to check validity of.
2765      *  \param theDescription Output. Description of problems in the shape, if they are.
2766      *  \return TRUE, if the shape "seems to be valid".
2767      */
2768     boolean CheckShapeWithGeometry (in GEOM_Object theShape,
2769                                     out string     theDescription);
2770
2771     /*!
2772      *  Obtain description of the given shape
2773      *  \param theShape Shape to be described.
2774      *  \return Description of the given shape.
2775      */
2776     string WhatIs (in GEOM_Object theShape);
2777
2778     /*!
2779      *  Get minimal distance between the given shapes.
2780      *  \param theShape1,theShape2 Shapes to find minimal distance between.
2781      *  \param X1,Y1,Z1 Output. Coordinates of point on theShape1, nearest to theShape2.
2782      *  \param X2,Y2,Z2 Output. Coordinates of point on theShape2, nearest to theShape1.
2783      *  \return Value of the minimal distance between the given shapes.
2784      */
2785     double GetMinDistance (in GEOM_Object theShape1, in GEOM_Object theShape2,
2786                            out double X1, out double Y1, out double Z1,
2787                            out double X2, out double Y2, out double Z2);
2788
2789     /*!
2790      *  Get angle between the given lines or linear edges.
2791      *  \param theShape1,theShape2 Shapes to find angle between. Lines or linear edges.
2792      *  \return Value of the angle between the given shapes.
2793      */
2794     double GetAngle (in GEOM_Object theShape1, in GEOM_Object theShape2);
2795
2796     /*!
2797      *  Get point coordinates
2798      */
2799     void PointCoordinates (in GEOM_Object theShape, out double X, out double Y, out double Z);
2800
2801     /*!
2802      *  Get radius of curvature of curve in the point determinated by param
2803      *  \param theShape - curve.
2804      *  \param theParam - parameter on curve
2805      *  \return Value of curvature.
2806      */
2807     double CurveCurvatureByParam (in GEOM_Object theShape, in double theParam);
2808
2809     /*!
2810      *  Get radius of curvature of curve in the given point
2811      *  \param theShape - curve.
2812      *  \param thePoint - point
2813      *  \return Value of curvature.
2814      */
2815     double CurveCurvatureByPoint (in GEOM_Object theShape, in GEOM_Object thePoint);
2816
2817     /*!
2818      *  Get max radius of curvature of surface in the point determinated by params
2819      *  \param theShape - surface.
2820      *  \param theUParam - U-parameter on surface
2821      *  \param theVParam - V-parameter on surface
2822      *  \return Value of curvature.
2823      */
2824     double MaxSurfaceCurvatureByParam (in GEOM_Object theShape, in double theUParam,
2825                                        in double theVParam);
2826
2827     /*!
2828      *  Get max radius of curvature of surface in the given point
2829      *  \param theShape - surface.
2830      *  \param thePoint - point
2831      *  \return Value of curvature.
2832      */
2833     double MaxSurfaceCurvatureByPoint (in GEOM_Object theShape, in GEOM_Object thePoint);
2834
2835     /*!
2836      *  Get min radius of curvature of surface in the point determinated by params
2837      *  \param theShape - surface.
2838      *  \param theUParam - U-parameter on surface
2839      *  \param theVParam - V-parameter on surface
2840      *  \return Value of curvature.
2841      */
2842     double MinSurfaceCurvatureByParam (in GEOM_Object theShape, in double theUParam,
2843                                        in double theVParam);
2844
2845     /*!
2846      *  Get min radius of curvature of surface in the given point
2847      *  \param theShape - surface.
2848      *  \param thePoint - point
2849      *  \return Value of curvature.
2850      */
2851     double MinSurfaceCurvatureByPoint (in GEOM_Object theShape, in GEOM_Object thePoint);
2852
2853   };
2854
2855
2856   /*!
2857    *  GEOM_IGroupOperations: Interface for groups creation.
2858    */
2859   interface GEOM_IGroupOperations : GEOM_IOperations
2860   {
2861     /*!
2862      *  Creates a new group which will store  sub shapes of theMainShape
2863      *  \param theMainShape is a GEOM object on which the group is selected
2864      *  \param theShapeType defines a shape type of the group
2865      *  \return a newly created GEOM group
2866      */
2867     GEOM_Object CreateGroup (in GEOM_Object theMainShape, in long theShapeType);
2868
2869     /*!
2870      *  Adds a sub object with ID theSubShapeId to the group
2871      *  \param theGroup is a GEOM group to which the new sub shape is added
2872      *  \param theSubShapeId is a sub shape ID in the main object.
2873      *  \note Use method <VAR>GEOM_IShapesOperations.GetSubShapeIndex()</VAR> to get an ID by the sub shape
2874      */
2875     void AddObject (in GEOM_Object theGroup, in long theSubShapeId);
2876
2877     /*!
2878      *  Removes a sub object with ID \a theSubShapeId from the group
2879      *  \param theGroup is a GEOM group from which the sub shape is removed.
2880      *  \param theSubShapeId is a sub shape ID in the main object.
2881      *  \note Use method <VAR>GEOM_IShapesOperations.GetSubShapeIndex()</VAR> to get an ID by the sub shape
2882      */
2883     void RemoveObject (in GEOM_Object theGroup, in long theSubShapeId);
2884
2885     /*!
2886      *  Adds to the group all the given shapes. No errors, if some shapes are alredy included.
2887      *  \param theGroup is a GEOM group to which the new sub shapes are added.
2888      *  \param theSubShapes is a list of sub shapes to be added.
2889      */
2890     void UnionList (in GEOM_Object theGroup, in ListOfGO theSubShapes);
2891
2892     /*!
2893      *  Removes from the group all the given shapes. No errors, if some shapes are not included.
2894      *  \param theGroup is a GEOM group from which the sub-shapes are removed.
2895      *  \param theSubShapes is a list of sub-shapes to be removed.
2896      */
2897     void DifferenceList (in GEOM_Object theGroup, in ListOfGO theSubShapes);
2898
2899     /*!
2900      *  Adds to the group all the given shapes. No errors, if some shapes are alredy included.
2901      *  \param theGroup is a GEOM group to which the new sub shapes are added.
2902      *  \param theSubShapes is a list of IDs of sub shapes to be added.
2903      */
2904     void UnionIDs (in GEOM_Object theGroup, in ListOfLong theSubShapes);
2905
2906     /*!
2907      *  Removes from the group all the given shapes. No errors, if some shapes are not included.
2908      *  \param theGroup is a GEOM group from which the sub-shapes are removed.
2909      *  \param theSubShapes is a list of IDs of sub-shapes to be removed.
2910      */
2911     void DifferenceIDs (in GEOM_Object theGroup, in ListOfLong theSubShapes);
2912
2913     /*!
2914      *  Returns a type of sub objects stored in the group
2915      *  \param theGroup is a GEOM group which type is returned.
2916      */
2917     long GetType (in GEOM_Object theGroup);
2918
2919     /*!
2920      *  Returns a main shape associated with the group
2921      *  \param theGroup is a GEOM group for which a main shape object is requested
2922      *  \return a GEOM object which is a main shape for theGroup
2923      */
2924     GEOM_Object GetMainShape (in GEOM_Object theGroup);
2925
2926     /*!
2927      *  Returns a list of sub objects ID stored in the group
2928      *  \param theGroup is a GEOM group for which a list of IDs is requested
2929      */
2930     ListOfLong GetObjects (in GEOM_Object theGroup);
2931   };
2932
2933
2934   /*!
2935    *  GEOM_Gen: Interface to access other GEOM interfaces.
2936    *  Also contains some methods to access and manage GEOM objects.
2937    */
2938   interface GEOM_Gen : Engines::Component,SALOMEDS::Driver
2939   {
2940     /*!
2941      *  Undo/Redo Management
2942      */
2943
2944     void Undo (in long theStudyID);
2945
2946     void Redo (in long theStudyID);
2947
2948     /*!
2949      * Publishing management
2950      * Adds in theStudy a object theObject under with a name theName,
2951      * if theFather is not NULL the object is placed under thFather's SObject.
2952      * Returns a SObject where theObject is placed
2953      */
2954     SALOMEDS::SObject AddInStudy (in SALOMEDS::Study theStudy,
2955                                   in GEOM_Object theObject,
2956                                   in string theName,
2957                                   in GEOM_Object theFather);
2958
2959     /*!
2960      *  Publish sub-shapes, standing for arguments and sub-shapes of arguments
2961      *  To be used from python scripts out of geompy.addToStudy (non-default usage)
2962      *  \param theStudy  the study, in which theObject is published already,
2963      *                   and in which the arguments will be published
2964      *  \param theObject published GEOM object, arguments of which will be published
2965      *  \param theArgs   list of GEOM_Object, operation arguments to be published.
2966      *                   If this list is empty, all operation arguments will be published
2967      *  \param theFindMethod method to search subshapes, corresponding to arguments and
2968      *                       their subshapes. Value from enumeration GEOM::find_shape_method.
2969      *  \param theInheritFirstArg set properties of the first argument for \a theObject.
2970      *                            Do not publish subshapes in place of arguments, but only
2971      *                            in place of subshapes of the first argument,
2972      *                            because the whole shape corresponds to the first argument.
2973      *                            Mainly to be used after transformations, but it also can be
2974      *                            usefull after partition with one object shape, and some other
2975      *                            operations, where only the first argument has to be considered.
2976      *                            If theObject has only one argument shape, this flag is automatically
2977      *                            considered as True, not regarding really passed value.
2978      *  \return True in case of success, False otherwise.
2979      */
2980     boolean RestoreSubShapesO (in SALOMEDS::Study   theStudy,
2981                                in GEOM_Object       theObject,
2982                                in ListOfGO          theArgs,
2983                                in find_shape_method theFindMethod,
2984                                in boolean           theInheritFirstArg);
2985
2986     /*!
2987      *  Publish sub-shapes, standing for arguments and sub-shapes of arguments
2988      *  To be used from GUI and from geompy.addToStudy.
2989      *  Work like the above method, but accepts study object theSObject instead of GEOM_Object.
2990      *  \param theSObject study object, referencing GEOM object, arguments of which will be published
2991      */
2992     boolean RestoreSubShapesSO (in SALOMEDS::Study   theStudy,
2993                                 in SALOMEDS::SObject theSObject,
2994                                 in ListOfGO          theArgs,
2995                                 in find_shape_method theFindMethod,
2996                                 in boolean           theInheritFirstArg);
2997
2998     /*!
2999      *  Methods to access interfaces for objects creation and transformation
3000      */
3001     GEOM_IBasicOperations     GetIBasicOperations    (in long theStudyID) raises (SALOME::SALOME_Exception);
3002     GEOM_ITransformOperations GetITransformOperations(in long theStudyID) raises (SALOME::SALOME_Exception);
3003     GEOM_I3DPrimOperations    GetI3DPrimOperations   (in long theStudyID) raises (SALOME::SALOME_Exception);
3004     GEOM_IShapesOperations    GetIShapesOperations   (in long theStudyID) raises (SALOME::SALOME_Exception);
3005     GEOM_IBooleanOperations   GetIBooleanOperations  (in long theStudyID) raises (SALOME::SALOME_Exception);
3006     GEOM_ICurvesOperations    GetICurvesOperations   (in long theStudyID) raises (SALOME::SALOME_Exception);
3007     GEOM_ILocalOperations     GetILocalOperations    (in long theStudyID) raises (SALOME::SALOME_Exception);
3008     GEOM_IHealingOperations   GetIHealingOperations  (in long theStudyID) raises (SALOME::SALOME_Exception);
3009     GEOM_IInsertOperations    GetIInsertOperations   (in long theStudyID) raises (SALOME::SALOME_Exception);
3010     GEOM_IMeasureOperations   GetIMeasureOperations  (in long theStudyID) raises (SALOME::SALOME_Exception);
3011     GEOM_IBlocksOperations    GetIBlocksOperations   (in long theStudyID) raises (SALOME::SALOME_Exception);
3012     GEOM_IGroupOperations     GetIGroupOperations    (in long theStudyID) raises (SALOME::SALOME_Exception);
3013
3014     /*!
3015      *  Objects Management
3016      */
3017
3018     /*!
3019      *  Removes the object from the GEOM component
3020      *  \param theObject is a GEOM object to be removed
3021      */
3022     void RemoveObject (in GEOM_Object theObject);
3023
3024     /*!
3025      *  Returns an object defined by the study and its entry in the GEOM component
3026      *  \param theStudyID is a SALOMEDS Study ID
3027      *  \param theEntry is an entry of the requested GEOM object in the GEOM component
3028      *  \note if the object has not previously been created a NULL GEOM object is returned
3029      */
3030     GEOM_Object GetObject (in long theStudyID, in string theEntry);
3031
3032     /*!
3033      *  Add a sub shape defined by indices in \a theIndices
3034      *  (contains unique IDs of sub shapes inside theMainShape)
3035      *  \note The sub shape GEOM_Objects can has ONLY ONE function.
3036      *        Don't try to apply modification operations on them.
3037      *  \note Internal method
3038      */
3039     GEOM_Object AddSubShape (in GEOM_Object theMainShape, in ListOfLong theIndices);
3040
3041     /*!
3042      *  GEOM object's IOR Management
3043      */
3044
3045     /*!
3046      *  Returns a GEOM Object defined by its IOR
3047      *  \param theIOR a string containg an IOR of the requested GEOM object
3048      */
3049     GEOM_Object GetIORFromString (in string theIOR);
3050
3051     /*!
3052      *  Returns a string which contains an IOR of the GEOM object
3053      *  \param theObject is a GEOM object which IOR is requested
3054      */
3055     string GetStringFromIOR (in GEOM_Object theObject);
3056
3057     /*!
3058      *  Returns a name with which a GEOM object was dumped into python script
3059      *  \param theStudyEntry is an entry of the GEOM object in the study
3060      */
3061     string GetDumpName (in string theStudyEntry);
3062
3063     /*!
3064      *  Returns all names with which a GEOM objects was dumped
3065      *  into python script to avoid the same names in SMESH script
3066      */
3067     string_array GetAllDumpNames();
3068   };
3069 };
3070
3071 #endif