Salome HOME
6ed1539805159c56eefda8a4db009a557d724130
[modules/geom.git] / idl / GEOM_Gen.idl
1 //  File   : GEOM_Gen.idl
2 //  Author : Sergey RUIN
3
4 #ifndef __GEOM_GEN__
5 #define __GEOM_GEN__
6
7 #include "SALOME_Exception.idl"
8 #include "SALOME_Component.idl"
9 #include "SALOMEDS.idl"
10
11 #include "SALOME_GenericObj.idl"
12
13 module GEOM
14 {
15   /*!
16    *  Topological types of shapes (like Open Cascade types)
17    */
18   enum shape_type { COMPOUND, COMPSOLID, SOLID, SHELL,
19                     FACE, WIRE, EDGE, VERTEX, SHAPE };
20
21
22   /*!
23    *  State of shape relatively geometrical surface like plane, sphere or cylinder.
24    *  Is used in functions GEOM_IShapesOperations.GetShapesOn<xxx>()
25    */
26   enum shape_state
27   {
28     /*! Shape is on surface */
29     ST_ON,
30
31     /*!
32      *  Shape is in the direction defined by the normal and not on surface.
33      *  For plane it means above the plane,
34      *  For sphere and cylinder it means outside of volume, bounded by the surface.
35      */
36     ST_OUT,
37
38     /*!
39      *  Shape is in the direction defined by the normal and on surface.
40      *  ONOUT = ON || OUT
41      */
42     ST_ONOUT,
43
44     /*!
45      *  Complementary to ONOUT.
46      *  For plane it means below the plane,
47      *  For sphere and cylinder it means inside the volume, bounded by the surface
48      *  (beyond axis and surface for cylinder and beyond cented and surface for sphere).
49      */
50     ST_IN,
51
52     /*!
53      *  Complementary to OUT.
54      *  ONIN = ON || IN
55      */
56     ST_ONIN
57   };
58
59   typedef sequence<string>      string_array;
60   typedef sequence<short>       short_array;
61   typedef sequence<long>        ListOfLong;
62   typedef sequence<double>      ListOfDouble;
63
64   interface GEOM_Object;
65
66   typedef sequence<GEOM_Object> ListOfGO;
67
68   /*!
69    *  GEOM_Object: interface of geometric object
70    */
71   interface GEOM_Object : SALOME::GenericObj
72   {
73
74     /*!
75      *  Get an entry of the object in GEOM component.
76      */
77     string GetEntry();
78
79     /*!
80      *  Get ID of study, where the object is created.
81      */
82     long GetStudyID();
83
84     /*!
85      *  Get internal type of the object (POINT, BOX, CYLINDER, EXTRUSION...).
86      */
87     long GetType();
88
89     /*!
90      *  Get a <VAR>shape_type</VAR> of the object value.
91      */
92     shape_type GetShapeType();
93
94     /*!
95      *  Set name of the object.
96      *  \param theName is a name which will be associated with this object.
97      */
98     void SetName (in string theName);
99
100     /*!
101      *  Get name of the object associated with this object.
102      */
103     string GetName();
104
105     /*!
106      *  Set a Study entry where this object was published.
107      */
108     void SetStudyEntry (in string theEntry);
109
110     /*!
111      *  Get a Study entry where this object was published.
112      */
113     string GetStudyEntry();
114
115     /*!
116      *  Get a list of all GEOM objects on which were the arguments
117      *  when this object was constructed and modified.
118      *  \note This method is supposed to be used by GUI only.
119      */
120     ListOfGO GetDependency();
121
122     /*!
123      *  Get a list of GEOM objects on which the last function that created or modified the object depends.
124      *  \note This method is supposed to be used by GUI only.
125      */
126     ListOfGO GetLastDependency();
127
128     /*!
129      *  Get the TopoDS_Shape, for colocated case only.
130      */
131     long getShape();
132
133     /*!
134      ######################################################################
135      *  Internal methods (For sub shape identification)
136      ######################################################################
137      */
138
139     /*!
140      *  Get geometric shape of the object as a byte stream
141      */
142     SALOMEDS::TMPFile GetShapeStream();
143
144     /*
145      *  Returns True if this object is not a sub shape of another object.
146      */
147     boolean IsMainShape();
148
149     /*
150      *  Get a list of ID's of sub shapes in the main shape.
151      *  \note Internal method, suppopsed to be used only by GEOM_Client
152      */
153     ListOfLong GetSubShapeIndices();
154
155     /*
156      *  Get a main shape object to which this object is a sub shape
157      *  \note Internal method, suppopsed to be used only by GEOM_Client
158      */
159     GEOM_Object GetMainShape();
160
161     /*
162      *  Return true if geom object representes a shape.
163      *  For example, method return false for GEOM_MARKER
164      */
165      boolean IsShape();
166   };
167
168
169   /*!
170    *  GEOM_IOperations: basic methods of all geometric operations
171    */
172   interface GEOM_IOperations : SALOME::GenericObj
173   {
174     /*!
175      *  To know, if the operation was successfully performed
176      */
177     boolean IsDone();
178
179     /*!
180      *  Set the operation error code
181      *  \param theErrorID is a string describing the error occured
182      *  \note This method is supposed to be used only by interfaces inheriting from IOperations.
183      */
184     void SetErrorCode (in string theErrorID);
185
186     /*!
187      *  Get the operation error code
188      */
189     string GetErrorCode();
190
191     /*!
192      *  Get ID of study, where the operation is defined
193      */
194     long GetStudyID();
195
196     /*!
197      *  Opens a new transaction
198      */
199     void StartOperation();
200
201     /*!
202      *  Closes the previously opened trasaction
203      */
204     void FinishOperation();
205
206     /*!
207      *  Aborts the previously opened transaction
208      */
209     void AbortOperation();
210   };
211
212   /*!
213    *  GEOM_IBasicOperations: interface for basic geometry creation
214    *  (Point, Vector, Plane, Marker)
215    */
216   interface GEOM_IBasicOperations : GEOM_IOperations
217   {
218     /*!
219      *  Create point by three coordinates.
220      *  \param theX The X coordinate of the point.
221      *  \param theY The Y coordinate of the point.
222      *  \param theZ The Z coordinate of the point.
223      *  \return New GEOM_Object, containing the created point.
224      */
225     GEOM_Object MakePointXYZ (in double theX, in double theY, in double theZ);
226
227     /*!
228      *  Create a point, distant from the referenced point
229      *  on the given distances along the coordinate axes.
230      *  \param theReference The referenced point.
231      *  \param theX Displacement from the referenced point along OX axis.
232      *  \param theY Displacement from the referenced point along OY axis.
233      *  \param theZ Displacement from the referenced point along OZ axis.
234      *  \return New GEOM_Object, containing the created point.
235      */
236     GEOM_Object MakePointWithReference (in GEOM_Object theReference,
237                                         in double theX, in double theY, in double theZ);
238
239     /*!
240      *  Create a point, corresponding to the given parameter on the given curve.
241      *  \param theRefCurve The referenced curve.
242      *  \param theParameter Value of parameter on the referenced curve.
243      *  \return New GEOM_Object, containing the created point.
244      */
245     GEOM_Object MakePointOnCurve (in GEOM_Object theRefCurve,
246                                   in double theParameter);
247
248     /*!
249      *  Create a vector with the given components.
250      *  \param theDX X component of the vector.
251      *  \param theDY Y component of the vector.
252      *  \param theDZ Z component of the vector.
253      *  \return New GEOM_Object, containing the created vector.
254      */
255     GEOM_Object MakeVectorDXDYDZ (in double theDX,
256                                   in double theDY,
257                                   in double theDZ);
258
259     /*!
260      *  Create a vector between two points.
261      *  \param thePnt1 Start point for the vector.
262      *  \param thePnt2 End point for the vector.
263      *  \return New GEOM_Object, containing the created vector.
264      */
265     GEOM_Object MakeVectorTwoPnt (in GEOM_Object thePnt1, in GEOM_Object thePnt2);
266
267     /*!
268      *  Create a line, passing through the given point
269      *  and parrallel to the given direction
270      *  \param thePnt Point. The resulting line will pass through it.
271      *  \param theDir Direction. The resulting line will be parallel to it.
272      *  \return New GEOM_Object, containing the created line.
273      */
274     GEOM_Object MakeLine (in GEOM_Object thePnt, in GEOM_Object theDir);
275
276     /*!
277      *  Create a line, passing through the given points
278      *  \param thePnt1 First of two points, defining the line.
279      *  \param thePnt2 Second of two points, defining the line.
280      *  \return New GEOM_Object, containing the created line.
281      */
282     GEOM_Object MakeLineTwoPnt (in GEOM_Object thePnt1, in GEOM_Object thePnt2);
283
284     /*!
285      *  Create a plane, passing through the three given points
286      *  \param thePnt1 First of three points, defining the plane.
287      *  \param thePnt2 Second of three points, defining the plane.
288      *  \param thePnt3 Fird of three points, defining the plane.
289      *  \param theTrimSize Half size of a side of quadrangle face, representing the plane.
290      *  \return New GEOM_Object, containing the created plane.
291      */
292     GEOM_Object MakePlaneThreePnt (in GEOM_Object thePnt1,
293                                    in GEOM_Object thePnt2,
294                                    in GEOM_Object thePnt3,
295                                    in double theTrimSize);
296
297     /*!
298      *  Create a plane, passing through the given point
299      *  and normal to the given vector.
300      *  \param thePnt Point, the plane has to pass through.
301      *  \param theVec Vector, defining the plane normal direction.
302      *  \param theTrimSize Half size of a side of quadrangle face, representing the plane.
303      *  \return New GEOM_Object, containing the created plane.
304      */
305     GEOM_Object MakePlanePntVec (in GEOM_Object thePnt,
306                                  in GEOM_Object theVec,
307                                  in double theTrimSize);
308
309     /*!
310      *  Create a plane, similar to the existing one, but with another size of representing face.
311      *  \param theFace Referenced plane.
312      *  \param theTrimSize New half size of a side of quadrangle face, representing the plane.
313      *  \return New GEOM_Object, containing the created plane.
314      */
315     GEOM_Object MakePlaneFace (in GEOM_Object theFace,
316                                in double theTrimSize);
317
318     /*!
319      *  Create a local coordinate system.
320      *  \param theOX,theOY,theOZ Three coordinates of coordinate system origin.
321      *  \param theXDX,theXDY,theXDZ Three components of OX direction
322      *  \param theYDX,theYDY,theYDZ Three components of OY direction
323      *  \return New GEOM_Object, containing the created coordinate system.
324      */
325     GEOM_Object MakeMarker (in double theOX , in double theOY , in double theOZ,
326                             in double theXDX, in double theXDY, in double theXDZ,
327                             in double theYDX, in double theYDY, in double theYDZ);
328   };
329
330   interface GEOM_ITransformOperations : GEOM_IOperations
331   {
332     /*!
333      *  Translate the given object along the vector, specified by its end points.
334      *  \param theObject The object to be translated.
335      *  \param thePoint1 Start point of translation vector.
336      *  \param thePoint2 End point of translation vector.
337      *  \return theObject.
338      */
339     GEOM_Object TranslateTwoPoints (in GEOM_Object theObject,
340                                     in GEOM_Object thePoint1,
341                                     in GEOM_Object thePoint2);
342
343     /*!
344      *  Translate the given object along the vector, specified
345      *  by its end points, creating its copy before the translation.
346      *  \param theObject The object to be translated.
347      *  \param thePoint1 Start point of translation vector.
348      *  \param thePoint2 End point of translation vector.
349      *  \return New GEOM_Object, containing the translated object.
350      */
351     GEOM_Object TranslateTwoPointsCopy (in GEOM_Object theObject,
352                                         in GEOM_Object thePoint1,
353                                         in GEOM_Object thePoint2);
354
355     /*!
356      *  Translate the given object along the vector, specified by its components.
357      *  \param theObject The object to be translated.
358      *  \param theDX,theDY,theDZ Components of translation vector.
359      *  \return theObject.
360      */
361     GEOM_Object TranslateDXDYDZ (in GEOM_Object theObject,
362                                  in double theDX, in double theDY, in double theDZ);
363
364     /*!
365      *  Translate the given object along the vector, specified
366      *  by its components, creating its copy before the translation.
367      *  \param theObject The object to be translated.
368      *  \param theDX,theDY,theDZ Components of translation vector.
369      *  \return New GEOM_Object, containing the translated object.
370      */
371     GEOM_Object TranslateDXDYDZCopy (in GEOM_Object theObject,
372                                      in double theDX, in double theDY, in double theDZ);
373
374
375     /*!
376      *  Translate the given object along the given vector.
377      *  \param theObject The object to be translated.
378      *  \param theVector Translation vector, giving both direction and distance.
379      *  \return theObject.
380      */
381     GEOM_Object TranslateVector (in GEOM_Object theObject,
382                                  in GEOM_Object theVector);
383
384     /*!
385      *  Translate the given object along the given vector,
386      *  creating its copy before the translation.
387      *  \param theObject The object to be translated.
388      *  \param theVector Translation vector, giving both direction and distance.
389      *  \return New GEOM_Object, containing the translated object.
390      */
391     GEOM_Object TranslateVectorCopy (in GEOM_Object theObject,
392                                      in GEOM_Object theVector);
393
394     /*!
395      *  Translate the given object along the given vector a given number times
396      *  \param theObject The object to be translated.
397      *  \param theVector Direction of the translation.
398      *  \param theStep Distance to translate on.
399      *  \param theNbTimes Quantity of translations to be done.
400      *  \return New GEOM_Object, containing compound of all
401      *          the shapes, obtained after each translation.
402      */
403     GEOM_Object MultiTranslate1D (in GEOM_Object theObject,
404                                   in GEOM_Object theVector,
405                                   in double theStep,
406                                   in long theNbTimes);
407
408     /*!
409      *  Conseqently apply two specified translations to theObject specified number of times.
410      *  \param theObject The object to be translated.
411      *  \param theVector1 Direction of the first translation.
412      *  \param theStep1 Step of the first translation.
413      *  \param theNbTimes1 Quantity of translations to be done along theVector1.
414      *  \param theVector2 Direction of the second translation.
415      *  \param theStep2 Step of the second translation.
416      *  \param theNbTimes2 Quantity of translations to be done along theVector2.
417      *  \return New GEOM_Object, containing compound of all
418      *          the shapes, obtained after each translation.
419      */
420     GEOM_Object MultiTranslate2D (in GEOM_Object theObject,
421                                   in GEOM_Object theVector1,
422                                   in double theStep1,
423                                   in long theNbTimes1,
424                                   in GEOM_Object theVector2,
425                                   in double theStep2,
426                                   in long theNbTimes2);
427
428     /*!
429      *  Rotate the given object around the given axis on the given angle.
430      *  \param theObject The object to be rotated.
431      *  \param theAxis Rotation axis.
432      *  \param theAngle Rotation angle in radians.
433      *  \return theObject.
434      */
435     GEOM_Object Rotate (in GEOM_Object theObject,
436                         in GEOM_Object theAxis,
437                         in double theAngle);
438
439     /*!
440      *  Rotate the given object around the given axis
441      *  on the given angle, creating its copy before the rotatation.
442      *  \param theObject The object to be rotated.
443      *  \param theAxis Rotation axis.
444      *  \param theAngle Rotation angle in radians.
445      *  \return New GEOM_Object, containing the rotated object.
446      */
447     GEOM_Object RotateCopy (in GEOM_Object theObject,
448                             in GEOM_Object theAxis,
449                             in double theAngle);
450
451     /*!
452      *  Rotate the given object around the given axis a given number times.
453      *  Rotation angle will be 2*PI/theNbTimes.
454      *  \param theObject The object to be rotated.
455      *  \param theAxis The rotation axis.
456      *  \param theNbTimes Quantity of rotations to be done.
457      *  \return New GEOM_Object, containing compound of all the
458      *          shapes, obtained after each rotation.
459      */
460     GEOM_Object MultiRotate1D (in GEOM_Object theObject,
461                                in GEOM_Object theAxis,
462                                in long theNbTimes);
463
464     /*!
465      *  Rotate the given object around the
466      *  given axis on the given angle a given number
467      *  times and multi-translate each rotation result.
468      *  Translation direction passes through center of gravity
469      *  of rotated shape and its projection on the rotation axis.
470      *  \param theObject The object to be rotated.
471      *  \param theAxis Rotation axis.
472      *  \param theAngle Rotation angle in graduces.
473      *  \param theNbTimes1 Quantity of rotations to be done.
474      *  \param theStep Translation distance.
475      *  \param theNbTimes2 Quantity of translations to be done.
476      *  \return New GEOM_Object, containing compound of all the
477      *          shapes, obtained after each transformation.
478      */
479     GEOM_Object MultiRotate2D (in GEOM_Object theObject,
480                                in GEOM_Object theAxis,
481                                in double theAngle,
482                                in long theNbTimes1,
483                                in double theStep,
484                                in long theNbTimes2);
485
486     /*!
487      *  Replace the given object by an object,
488      *  symmetrical to it relatively the given plane.
489      *  \param theObject The object to be mirrored.
490      *  \param thePlane Plane of symmetry.
491      */
492     GEOM_Object MirrorPlane (in GEOM_Object theObject, in GEOM_Object thePlane);
493
494     /*!
495      *  Create an object, symmetrical
496      *  to the given one relatively the given plane.
497      *  \param theObject The object to be mirrored.
498      *  \param thePlane Plane of symmetry.
499      *  \return New GEOM_Object, containing the mirrored shape.
500      */
501     GEOM_Object MirrorPlaneCopy (in GEOM_Object theObject, in GEOM_Object thePlane);
502
503     /*!
504      *  Replace the given object by an object,
505      *  symmetrical to it relatively the given axis.
506      *  \param theObject The object to be mirrored.
507      *  \param theAxis Axis of symmetry.
508      *  \return theObject.
509      */
510     GEOM_Object MirrorAxis (in GEOM_Object theObject, in GEOM_Object theAxis);
511
512     /*!
513      *  Create an object, symmetrical
514      *  to the given one relatively the given axis.
515      *  \param theObject The object to be mirrored.
516      *  \param theAxis Axis of symmetry.
517      *  \return New GEOM_Object, containing the mirrored object.
518      */
519     GEOM_Object MirrorAxisCopy (in GEOM_Object theObject, in GEOM_Object theAxis);
520
521     /*!
522      *  Replace the given object by an object, symmetrical to it relatively the given point.
523      *  \param theObject The object to be mirrored.
524      *  \param thePoint Point of symmetry.
525      *  \return theObject.
526      */
527     GEOM_Object MirrorPoint (in GEOM_Object theObject, in GEOM_Object thePoint);
528
529     /*!
530      *  Create an object, symmetrical to the given one relatively the given point.
531      *  \param theObject The object to be mirrored.
532      *  \param thePoint Point of symmetry.
533      *  \return New GEOM_Object, containing the mirrored object.
534      */
535     GEOM_Object MirrorPointCopy (in GEOM_Object theObject, in GEOM_Object thePoint);
536
537     /*!
538      *  Replace the given object by its offset.
539      *  \param theObject The base object for the offset.
540      *  \param theOffset Offset value.
541      *  \return theObject.
542      */
543     GEOM_Object OffsetShape (in GEOM_Object theObject, in double theOffset);
544
545     /*!
546      *  Create new object as offset of the given one.
547      *  \param theObject The base object for the offset.
548      *  \param theOffset Offset value.
549      *  \return New GEOM_Object, containing the offset object.
550      */
551     GEOM_Object OffsetShapeCopy (in GEOM_Object theObject, in double theOffset);
552
553     /*!
554      *  Scale the given object by the factor.
555      *  \param theObject The object to be scaled.
556      *  \param thePoint Center point for scaling.
557      *  \param theFactor Scaling factor value.
558      *  \return theObject.
559      */
560     GEOM_Object ScaleShape (in GEOM_Object theObject, in GEOM_Object thePoint,
561                             in double theFactor);
562
563     /*!
564      *  Scale the given object by the factor, creating its copy before the scaling.
565      *  \param theObject The object to be scaled.
566      *  \param thePoint Center point for scaling.
567      *  \param theFactor Scaling factor value.
568      *  \return New GEOM_Object, containing the scaled shape.
569      */
570     GEOM_Object ScaleShapeCopy (in GEOM_Object theObject, in GEOM_Object thePoint,
571                                 in double theFactor);
572
573     /*!
574      *  Modify the Location of the given object by LCS
575      */
576     GEOM_Object PositionShape (in GEOM_Object theObject,
577                                in GEOM_Object theStartLCS,
578                                in GEOM_Object theEndLCS);
579
580     /*!
581      *  Modify the Location of the given object by LCS
582      *  creating its copy before the setting
583      */
584     GEOM_Object PositionShapeCopy (in GEOM_Object theObject,
585                                    in GEOM_Object theStartLCS,
586                                    in GEOM_Object theEndLCS);
587   };
588
589   /*!
590    *  GEOM_I3DPrimOperations: Interface for 3D primitives creation
591    *  Box, Cylinder, Cone, Sphere, Prism (extrusion),
592    *  Pipe (extrusion along contour), Revolution, Solid (from shell).
593    */
594   interface GEOM_I3DPrimOperations : GEOM_IOperations
595   {
596     /*!
597      *  Create a box with specified dimensions along the coordinate axes
598      *  and with edges, parallel to the coordinate axes.
599      *  Center of the box will be at point (DX/2, DY/2, DZ/2).
600      *  \param theDX Length of Box edges, parallel to OX axis.
601      *  \param theDY Length of Box edges, parallel to OY axis.
602      *  \param theDZ Length of Box edges, parallel to OZ axis.
603      *  \return New GEOM_Object, containing the created box.
604      */
605     GEOM_Object MakeBoxDXDYDZ (in double theDX, in double theDY, in double theDZ);
606
607     /*!
608      *  Create a box with two specified opposite vertices,
609      *  and with edges, parallel to the coordinate axes
610      *  \param thePnt1 First of two opposite vertices.
611      *  \param thePnt2 Second of two opposite vertices.
612      *  \return New GEOM_Object, containing the created box.
613      */
614     GEOM_Object MakeBoxTwoPnt (in GEOM_Object thePnt1, in GEOM_Object thePnt2);
615
616     /*!
617      *  Create a cylinder with given radius and height at
618      *  the origin of coordinate system. Axis of the cylinder
619      *  will be collinear to the OZ axis of the coordinate system.
620      *  \param theR Cylinder radius.
621      *  \param theH Cylinder height.
622      *  \return New GEOM_Object, containing the created cylinder.
623      */
624     GEOM_Object MakeCylinderRH (in double theR, in double theH);
625
626     /*!
627      *  Create a cylinder with given base point, axis, radius and height.
628      *  \param thePnt Central point of cylinder base.
629      *  \param theAxis Cylinder axis.
630      *  \param theR Cylinder radius.
631      *  \param theH Cylinder height.
632      *  \return New GEOM_Object, containing the created cylinder.
633      */
634     GEOM_Object MakeCylinderPntVecRH (in GEOM_Object thePnt,
635                                       in GEOM_Object theAxis,
636                                       in double      theR,
637                                       in double      theH);
638
639     /*!
640      *  Create a cone with given height and radiuses at
641      *  the origin of coordinate system. Axis of the cone will
642      *  be collinear to the OZ axis of the coordinate system.
643      *  \param theR1 Radius of the first cone base.
644      *  \param theR2 Radius of the second cone base.
645      *    \note If both radiuses are non-zero, the cone will be truncated.
646      *    \note If the radiuses are equal, a cylinder will be created instead.
647      *  \param theH Cone height.
648      *  \return New GEOM_Object, containing the created cone.
649      */
650     GEOM_Object MakeConeR1R2H (in double theR1, in double theR2, in double theH);
651
652     /*!
653      *  Create a cone with given base point, axis, height and radiuses.
654      *  \param thePnt Central point of the first cone base.
655      *  \param theAxis Cone axis.
656      *  \param theR1 Radius of the first cone base.
657      *  \param theR2 Radius of the second cone base.
658      *    \note If both radiuses are non-zero, the cone will be truncated.
659      *    \note If the radiuses are equal, a cylinder will be created instead.
660      *  \param theH Cone height.
661      *  \return New GEOM_Object, containing the created cone.
662      */
663     GEOM_Object MakeConePntVecR1R2H (in GEOM_Object thePnt,
664                                      in GEOM_Object theAxis,
665                                      in double      theR1,
666                                      in double      theR2,
667                                      in double      theH);
668
669     /*!
670      *  Create a torus with given radiuses at the origin of coordinate system.
671      *  \param theRMajor Torus major radius.
672      *  \param theRMinor Torus minor radius.
673      *  \return New GEOM_Object, containing the created torus.
674      */
675     GEOM_Object MakeTorusRR (in double theRMajor,
676                              in double theRMinor);
677
678     /*!
679      *  Create a torus with given center, normal vector and radiuses.
680      *  \param thePnt Torus central point.
681      *  \param theVec Torus axis of symmetry.
682      *  \param theRMajor Torus major radius.
683      *  \param theRMinor Torus minor radius.
684      *  \return New GEOM_Object, containing the created torus.
685      */
686     GEOM_Object MakeTorusPntVecRR (in GEOM_Object thePnt,
687                                    in GEOM_Object theVec,
688                                    in double theRMajor,
689                                    in double theRMinor);
690
691     /*!
692      *  Create a sphere with given radius at the origin of coordinate system.
693      *  \param theR Sphere radius.
694      *  \return New GEOM_Object, containing the created sphere.
695      */
696     GEOM_Object MakeSphereR (in double theR);
697
698     /*!
699      *  Create a sphere with given center and radius.
700      *  \param thePnt Sphere center.
701      *  \param theR Sphere radius.
702      *  \return New GEOM_Object, containing the created .
703      */
704     GEOM_Object MakeSpherePntR (in GEOM_Object thePnt, in double theR);
705
706     /*!
707      *  Create a shape by extrusion of the base shape along the vector,
708      *  i.e. all the space, transfixed by the base shape during its translation
709      *  along the vector on the given distance.
710      *  \param theBase Base shape to be extruded.
711      *  \param theVec Direction of extrusion.
712      *  \param theH Prism dimension along theVec.
713      *  \return New GEOM_Object, containing the created prism.
714      */
715     GEOM_Object MakePrismVecH (in GEOM_Object theBase,
716                                in GEOM_Object theVec,
717                                in double      theH);
718
719     /*!
720      *  Create a shape by extrusion of the base shape along a vector, defined by two points.
721      *  \param theBase Base shape to be extruded.
722      *  \param thePoint1 First end of extrusion vector.
723      *  \param thePoint2 Second end of extrusion vector.
724      *  \return New GEOM_Object, containing the created prism.
725      */
726     GEOM_Object MakePrismTwoPnt (in GEOM_Object theBase,
727                                  in GEOM_Object thePoint1,
728                                  in GEOM_Object thePoint2);
729
730     /*!
731      *  Create a shape by extrusion of the base shape along
732      *  the path shape. The path shape can be a wire or an edge.
733      *  \param theBase Base shape to be extruded.
734      *  \param thePath Path shape to extrude the base shape along it.
735      *  \return New GEOM_Object, containing the created pipe.
736      */
737     GEOM_Object MakePipe (in GEOM_Object theBase, in GEOM_Object thePath);
738
739     /*!
740      *  Create a shape by revolution of the base shape around the axis
741      *  on the given angle, i.e. all the space, transfixed by the base
742      *  shape during its rotation around the axis on the given angle.
743      *  \param theBase Base shape to be rotated.
744      *  \param theAxis Rotation axis.
745      *  \param theAngle Rotation angle in radians.
746      *  \return New GEOM_Object, containing the created revolution.
747      */
748     GEOM_Object MakeRevolutionAxisAngle (in GEOM_Object theBase,
749                                          in GEOM_Object theAxis,
750                                          in double theAngle);
751
752     /*!
753      *  Create a filling from the given compound of contours.
754      *  \param theMinDeg a minimal degree
755      *  \param theMaxDeg a maximal degree
756      *  \param theTol2D a 2d tolerance
757      *  \param theTol3D a 3d tolerance
758      *  \param theNbIter a number of iteration
759      *  \return New GEOM_Object, containing the created filling surface.
760      */
761     GEOM_Object MakeFilling (in GEOM_Object theShape,
762                              in long theMinDeg, in long theMaxDeg,
763                              in double theTol2D, in double theTol3D,
764                              in long theNbIter);
765   };
766
767   /*!
768    *  GEOM_IShapesOperations: Interface for Shapes creation:
769    *  Edge from two points, Wire from edges, Face from wire,
770    *  Shell from faces, Solid from shells, Compound from shapes
771    */
772   interface GEOM_IShapesOperations : GEOM_IOperations
773   {
774     /*!
775      *  Create a linear edge with specified ends.
776      *  \param thePnt1 Point for the first end of edge.
777      *  \param thePnt2 Point for the second end of edge.
778      *  \return New GEOM_Object, containing the created edge.
779      */
780     GEOM_Object MakeEdge (in GEOM_Object thePnt1, in GEOM_Object thePnt2);
781
782     /*!
783      *  Create a wire from the set of edges and wires.
784      *  \param theEdgesAndWires List of edge and/or wires.
785      *  \return New GEOM_Object, containing the created wire.
786      */
787     GEOM_Object MakeWire (in ListOfGO theEdgesAndWires);
788
789     /*!
790      *  Create a face on the given wire.
791      *  \param theWire Wire to build the face on.
792      *  \param isPlanarWanted If TRUE, only planar face will be built.
793      *                        If impossible, NULL object will be returned.
794      *  \return New GEOM_Object, containing the created face.
795      */
796     GEOM_Object MakeFace (in GEOM_Object theWire, in boolean isPlanarWanted);
797
798     /*!
799      *  Create a face on the given wires set.
800      *  \param theWires List of wires to build the face on.
801      *  \param isPlanarWanted If TRUE, only planar face will be built.
802      *                        If impossible, NULL object will be returned.
803      *  \return New GEOM_Object, containing the created face.
804      */
805     GEOM_Object MakeFaceWires (in ListOfGO theWires, in boolean isPlanarWanted);
806
807     /*!
808      *  Create a shell from the set of faces and shells.
809      *  \param theFacesAndShells List of faces and/or shells.
810      *  \return New GEOM_Object, containing the created shell.
811      */
812     GEOM_Object MakeShell (in ListOfGO theFacesAndShells);
813
814     /*!
815      *  Create a solid, bounded by the given shell.
816      *  \param theShell Bounding shell.
817      *  \return New GEOM_Object, containing the created solid.
818      */
819     GEOM_Object MakeSolidShell (in GEOM_Object theShell);
820
821     /*!
822      *  Create a solid, bounded by the given shells.
823      *  \param theShells Bounding shells.
824      *  \return New GEOM_Object, containing the created solid.
825      */
826     GEOM_Object MakeSolidShells (in ListOfGO theShells);
827
828     /*!
829      *  Create a compound of the given shapes.
830      *  \param theShapes List of shapes to put in compound.
831      *  \return New GEOM_Object, containing the created compound.
832      */
833     GEOM_Object MakeCompound (in ListOfGO theShapes);
834
835     /*!
836      *  Replace coincident faces in theShape by one face.
837      *  \param theShape Initial shape.
838      *  \param theTolerance Maximum distance between faces, which can be considered as coincident.
839      *  \return New GEOM_Object, containing a copy of theShape without coincident faces.
840      */
841     GEOM_Object MakeGlueFaces (in GEOM_Object theShape, in double theTolerance);
842
843     /*!
844      *  Explode a shape on subshapes of a given type.
845      *  \param theShape Shape to be exploded.
846      *  \param theShapeType Type of sub-shapes to be retrieved.
847      *  \param isSorted If this parameter is TRUE, sub-shapes will be
848      *                  sorted by coordinates of their gravity centers.
849      *  \return List of sub-shapes of type theShapeType, contained in theShape.
850      */
851     ListOfGO MakeExplode (in GEOM_Object theShape,
852                           in long        theShapeType,
853                           in boolean     isSorted);
854
855     /*!
856      *  Explode a shape on subshapes of a given type.
857      *  Does the same, as the above method, but returns IDs of sub-shapes,
858      *  not GEOM_Objects. It works faster.
859      *  \param theShape Shape to be exploded.
860      *  \param theShapeType Type of sub-shapes to be retrieved.
861      *  \param isSorted If this parameter is TRUE, sub-shapes will be
862      *                  sorted by coordinates of their gravity centers.
863      *  \return List of IDs of sub-shapes of type theShapeType, contained in theShape.
864      */
865     ListOfLong SubShapeAllIDs (in GEOM_Object theShape,
866                                in long        theShapeType,
867                                in boolean     isSorted);
868
869     /*!
870      *  Get a sub shape defined by its unique ID inside \a theMainShape
871      *  \note The sub shape GEOM_Objects can has ONLY ONE function.
872      *        Don't try to apply modification operations on them.
873      */
874     GEOM_Object GetSubShape (in GEOM_Object theMainShape,
875                              in long        theID);
876
877     /*!
878      *  Count number of faces in the given shape.
879      *  \param theShape Shape to count faces in.
880      *  \return Number of faces in the given shape.
881      */
882     long NumberOfFaces (in GEOM_Object theShape);
883
884     /*!
885      *  Count number of edges in the given shape.
886      *  \param theShape Shape to count edges in.
887      *  \return Number of edges in theShape.
888      */
889     long NumberOfEdges (in GEOM_Object theShape);
890
891     /*!
892      *  Reverses an orientation the given shape.
893      *  \param theShape Shape to be reversed.
894      *  \return The reversed copy of theShape.
895      */
896     GEOM_Object ChangeOrientation (in GEOM_Object theShape);
897
898     /*!
899      *  Retrieve all free faces from the given shape.
900      *  Free face is a face, which is not shared between two shells of the shape.
901      *  \param theShape Shape to find free faces in.
902      *  \return List of IDs of all free faces, contained in theShape.
903      */
904     ListOfLong GetFreeFacesIDs (in GEOM_Object theShape);
905
906     /*!
907      *  Get all sub-shapes of theShape1 of the given type, shared with theShape2.
908      *  \param theShape1 Shape to find sub-shapes in.
909      *  \param theShape2 Shape to find shared sub-shapes with.
910      *  \param theShapeType Type of sub-shapes to be retrieved.
911      *  \return List of sub-shapes of theShape1, shared with theShape2.
912      */
913     ListOfGO GetSharedShapes (in GEOM_Object theShape1,
914                               in GEOM_Object theShape2,
915                               in long        theShapeType);
916
917     /*!
918      *  Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
919      *  the specified plane by the certain way, defined through \a theState parameter.
920      *  \param theShape Shape to find sub-shapes of.
921      *  \param theShapeType Type of sub-shapes to be retrieved.
922      *  \param theAx1 Vector (or line, or linear edge), specifying normal
923      *                direction and location of the plane to find shapes on.
924      *  \param theState The state of the subshapes to find.
925      *  \return List of all found sub-shapes.
926      */
927     ListOfGO GetShapesOnPlane (in GEOM_Object theShape,
928                                in long        theShapeType,
929                                in GEOM_Object theAx1,
930                                in shape_state theState);
931
932     /*!
933      *  Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
934      *  the specified cylinder by the certain way, defined through \a theState parameter.
935      *  \param theShape Shape to find sub-shapes of.
936      *  \param theShapeType Type of sub-shapes to be retrieved.
937      *  \param theAxis Vector (or line, or linear edge), specifying
938      *                 axis of the cylinder to find shapes on.
939      *  \param theRadius Radius of the cylinder to find shapes on.
940      *  \param theState The state of the subshapes to find.
941      *  \return List of all found sub-shapes.
942      */
943     ListOfGO GetShapesOnCylinder (in GEOM_Object theShape,
944                                   in long        theShapeType,
945                                   in GEOM_Object theAxis,
946                                   in double      theRadius,
947                                   in shape_state theState);
948
949     /*!
950      *  Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
951      *  the specified sphere by the certain way, defined through \a theState parameter.
952      *  \param theShape Shape to find sub-shapes of.
953      *  \param theShapeType Type of sub-shapes to be retrieved.
954      *  \param theCenter Point, specifying center of the sphere to find shapes on.
955      *  \param theRadius Radius of the sphere to find shapes on.
956      *  \param theState The state of the subshapes to find.
957      *  \return List of all found sub-shapes.
958      */
959     ListOfGO GetShapesOnSphere (in GEOM_Object theShape,
960                                 in long        theShapeType,
961                                 in GEOM_Object theCenter,
962                                 in double      theRadius,
963                                 in shape_state theState);
964
965     /*!
966      *  Get sub-shape(s) of theShapeWhere, which are
967      *  coincident with \a theShapeWhat or could be a part of it.
968      *  \param theShapeWhere Shape to find sub-shapes of.
969      *  \param theShapeWhat Shape, specifying what to find.
970      *  \return Group of all found sub-shapes or a single found sub-shape.
971      */
972     GEOM_Object GetInPlace (in GEOM_Object theShapeWhere,
973                             in GEOM_Object theShapeWhat);
974   };
975
976   /*!
977    *  GEOM_IBlocksOperations: Interface for Blocks construction
978    *  Face from points or edges, Block from faces,
979    *  Blocks multi-translation and multi-rotation
980    */
981   interface GEOM_IBlocksOperations : GEOM_IOperations
982   {
983     /*!
984      *  Creation of blocks
985      */
986
987     /*!
988      *  Create a quadrangle face from four edges. Order of Edges is not
989      *  important. It is  not necessary that edges share the same vertex.
990      *  \param theEdge1,theEdge2,theEdge3,theEdge4 Edges for the face bound.
991      *  \return New GEOM_Object, containing the created face.
992      */
993     GEOM_Object MakeQuad (in GEOM_Object theEdge1,
994                           in GEOM_Object theEdge2,
995                           in GEOM_Object theEdge3,
996                           in GEOM_Object theEdge4);
997
998     /*!
999      *  Create a quadrangle face on two edges.
1000      *  The missing edges will be built by creating the shortest ones.
1001      *  \param theEdge1,theEdge2 Two opposite edges for the face.
1002      *  \return New GEOM_Object, containing the created face.
1003      */
1004     GEOM_Object MakeQuad2Edges (in GEOM_Object theEdge1,
1005                                 in GEOM_Object theEdge2);
1006
1007     /*!
1008      *  Create a quadrangle face with specified corners.
1009      *  The missing edges will be built by creating the shortest ones.
1010      *  \param thePnt1,thePnt2,thePnt3,thePnt4 Corner vertices for the face.
1011      *  \return New GEOM_Object, containing the created face.
1012      */
1013     GEOM_Object MakeQuad4Vertices (in GEOM_Object thePnt1,
1014                                    in GEOM_Object thePnt2,
1015                                    in GEOM_Object thePnt3,
1016                                    in GEOM_Object thePnt4);
1017
1018     /*!
1019      *  Create a hexahedral solid, bounded by the six given faces. Order of
1020      *  faces is not important. It is  not necessary that Faces share the same edge.
1021      *  \param theFace1-theFace6 Faces for the hexahedral solid.
1022      *  \return New GEOM_Object, containing the created solid.
1023      */
1024     GEOM_Object MakeHexa (in GEOM_Object theFace1,
1025                           in GEOM_Object theFace2,
1026                           in GEOM_Object theFace3,
1027                           in GEOM_Object theFace4,
1028                           in GEOM_Object theFace5,
1029                           in GEOM_Object theFace6);
1030
1031     /*!
1032      *  Create a hexahedral solid between two given faces.
1033      *  The missing faces will be built by creating the smallest ones.
1034      *  \param theFace1,theFace2 Two opposite faces for the hexahedral solid.
1035      *  \return New GEOM_Object, containing the created solid.
1036      */
1037     GEOM_Object MakeHexa2Faces (in GEOM_Object theFace1,
1038                                 in GEOM_Object theFace2);
1039
1040     /*!
1041      *  Extract elements of blocks and blocks compounds
1042      */
1043
1044     /*!
1045      *  Get a vertex, found in the given shape by its coordinates.
1046      *  \param theShape Block or a compound of blocks.
1047      *  \param theX,theY,theZ Coordinates of the sought vertex.
1048      *  \param theEpsilon Maximum allowed distance between the resulting
1049      *                    vertex and point with the given coordinates.
1050      *  \return New GEOM_Object, containing the found vertex.
1051      */
1052     GEOM_Object GetPoint (in GEOM_Object theShape,
1053                           in double      theX,
1054                           in double      theY,
1055                           in double      theZ,
1056                           in double      theEpsilon);
1057
1058     /*!
1059      *  Get an edge, found in the given shape by two given vertices.
1060      *  \param theShape Block or a compound of blocks.
1061      *  \param thePoint1,thePoint2 Points, close to the ends of the desired edge.
1062      *  \return New GEOM_Object, containing the found edge.
1063      */
1064     GEOM_Object GetEdge (in GEOM_Object theShape,
1065                          in GEOM_Object thePoint1,
1066                          in GEOM_Object thePoint2);
1067
1068     /*!
1069      *  Find an edge of the given shape, which has minimal distance to the given point.
1070      *  \param theShape Block or a compound of blocks.
1071      *  \param thePoint Point, close to the desired edge.
1072      *  \return New GEOM_Object, containing the found edge.
1073      */
1074     GEOM_Object GetEdgeNearPoint (in GEOM_Object theShape,
1075                                   in GEOM_Object thePoint);
1076
1077     /*!
1078      *  Returns a face, found in the given shape by four given corner vertices.
1079      *  \param theShape Block or a compound of blocks.
1080      *  \param thePoint1-thePoint4 Points, close to the corners of the desired face.
1081      *  \return New GEOM_Object, containing the found face.
1082      */
1083     GEOM_Object GetFaceByPoints (in GEOM_Object theShape,
1084                                  in GEOM_Object thePoint1,
1085                                  in GEOM_Object thePoint2,
1086                                  in GEOM_Object thePoint3,
1087                                  in GEOM_Object thePoint4);
1088
1089     /*!
1090      *  Get a face of block, found in the given shape by two given edges.
1091      *  \param theShape Block or a compound of blocks.
1092      *  \param theEdge1,theEdge2 Edges, close to the edges of the desired face.
1093      *  \return New GEOM_Object, containing the found face.
1094      */
1095     GEOM_Object GetFaceByEdges (in GEOM_Object theShape,
1096                                 in GEOM_Object theEdge1,
1097                                 in GEOM_Object theEdge2);
1098
1099     /*!
1100      *  Find a face, opposite to the given one in the given block.
1101      *  \param theBlock Must be a hexahedral solid.
1102      *  \param theFace Face of \a theBlock, opposite to the desired face.
1103      *  \return New GEOM_Object, containing the found face.
1104      */
1105     GEOM_Object GetOppositeFace (in GEOM_Object theBlock,
1106                                  in GEOM_Object theFace);
1107
1108     /*!
1109      *  Find a face of the given shape, which has minimal distance to the given point.
1110      *  \param theShape Block or a compound of blocks.
1111      *  \param thePoint Point, close to the desired face.
1112      *  \return New GEOM_Object, containing the found face.
1113      */
1114     GEOM_Object GetFaceNearPoint (in GEOM_Object theShape,
1115                                   in GEOM_Object thePoint);
1116
1117     /*!
1118      *  Find a face of block, whose outside normale has minimal angle with the given vector.
1119      *  \param theShape Block or a compound of blocks.
1120      *  \param theVector Vector, close to the normale of the desired face.
1121      *  \return New GEOM_Object, containing the found face.
1122      */
1123     GEOM_Object GetFaceByNormale (in GEOM_Object theBlock,
1124                                   in GEOM_Object theVector);
1125
1126     /*!
1127      *  Extract blocks from blocks compounds
1128      */
1129
1130     /*!
1131      *  Check, if the compound contains only specified blocks.
1132      *  \param theCompound The compound to check.
1133      *  \param theMinNbFaces If solid has lower number of faces, it is not a block.
1134      *  \param theMaxNbFaces If solid has higher number of faces, it is not a block.
1135      *    \note If theMaxNbFaces = 0, the maximum number of faces is not restricted.
1136      *  \return TRUE, if the given compound contains only blocks.
1137      *  \return theNbBlocks Number of specified blocks in theCompound.
1138      */
1139     boolean IsCompoundOfBlocks (in GEOM_Object theCompound,
1140                                 in long        theMinNbFaces,
1141                                 in long        theMaxNbFaces,
1142                                 out long       theNbBlocks);
1143
1144     /*!
1145      *  Enumeration of Blocks Compound defects.
1146      */
1147     enum BCErrorType
1148     {
1149       /* Each element of the compound should be a Block */
1150       NOT_BLOCK,
1151
1152       /* An element is a potential block, but has degenerated and/or seam edge(s). */
1153       EXTRA_EDGE,
1154
1155       /* A connection between two Blocks should be an entire face or an entire edge */
1156       INVALID_CONNECTION,
1157
1158       /* The compound should be connexe */
1159       NOT_CONNECTED,
1160
1161       /* The glue between two quadrangle faces should be applied */
1162       NOT_GLUED
1163     };
1164
1165     /*!
1166      *  Description of Blocks Compound defect: type and incriminated sub-shapes.
1167      */
1168     struct BCError
1169     {
1170       BCErrorType error;
1171       ListOfLong  incriminated;
1172     };
1173
1174     /*!
1175      *  Sequence of all Blocks Compound defects.
1176      */
1177     typedef sequence<BCError> BCErrors;
1178
1179     /*!
1180      *  Check, if the compound of blocks is given.
1181      *  To be considered as a compound of blocks, the
1182      *  given shape must satisfy the following conditions:
1183      *  - Each element of the compound should be a Block (6 faces and 12 edges).
1184      *  - A connection between two Blocks should be an entire quadrangle face or an entire edge.
1185      *  - The compound should be connexe.
1186      *  - The glue between two quadrangle faces should be applied.
1187      *    \note Single block is also accepted as a valid compound of blocks.
1188      *  \param theCompound The compound to check.
1189      *  \return TRUE, if the given shape is a compound of blocks.
1190      *  \return theErrors Structure, containing discovered errors and incriminated sub-shapes.
1191      */
1192     boolean CheckCompoundOfBlocks (in GEOM_Object theCompound,
1193                                    out BCErrors   theErrors);
1194
1195     /*!
1196      *  Convert sequence of Blocks Compound errors, returned by
1197      *  <VAR>CheckCompoundOfBlocks()</VAR>, into string.
1198      *  \param theCompound The bad compound.
1199      *  \param theErrors The sequence of \a theCompound errors.
1200      *  \return String, describing all the errors in form, suitable for printing.
1201      */
1202     string PrintBCErrors (in GEOM_Object theCompound,
1203                           in BCErrors    theErrors);
1204
1205     /*!
1206      *  Remove all seam and degenerated edges from \a theShape.
1207      *  Unite faces and edges, sharing one surface.
1208      *  \param theShape The compound or single solid to remove irregular edges from.
1209      *  \return Improved shape.
1210      */
1211     GEOM_Object RemoveExtraEdges (in GEOM_Object theShape);
1212
1213     /*!
1214      *  Check, if the given shape is a blocks compound.
1215      *  Fix all detected errors.
1216      *    \note Single block can be also fixed by this method.
1217      *  \param theCompound The compound to check and improve.
1218      *  \return Improved compound.
1219      */
1220     GEOM_Object CheckAndImprove (in GEOM_Object theCompound);
1221
1222     /*!
1223      *  Get all the blocks, contained in the given compound.
1224      *  \param theCompound The compound to explode.
1225      *  \param theMinNbFaces If solid has lower number of faces, it is not a block.
1226      *  \param theMaxNbFaces If solid has higher number of faces, it is not a block.
1227      *    \note If theMaxNbFaces = 0, the maximum number of faces is not restricted.
1228      *  \return List of GEOM_Objects, containing the retrieved blocks.
1229      */
1230     ListOfGO ExplodeCompoundOfBlocks (in GEOM_Object theCompound,
1231                                       in long        theMinNbFaces,
1232                                       in long        theMaxNbFaces);
1233
1234     /*!
1235      *  Find block, containing the given point inside its volume or on boundary.
1236      *  \param theCompound Compound, to find block in.
1237      *  \param thePoint Point, close to the desired block. If the point lays on
1238      *         boundary between some blocks, we return block with nearest center.
1239      *  \return New GEOM_Object, containing the found block.
1240      */
1241     GEOM_Object GetBlockNearPoint (in GEOM_Object theCompound,
1242                                    in GEOM_Object thePoint);
1243
1244     /*!
1245      *  Find block, containing all the elements, passed as the parts, or maximum quantity of them.
1246      *  \param theCompound Compound, to find block in.
1247      *  \param theParts List of faces and/or edges and/or vertices to be parts of the found block.
1248      *  \return New GEOM_Object, containing the found block.
1249      */
1250     GEOM_Object GetBlockByParts (in GEOM_Object theCompound,
1251                                  in ListOfGO    theParts);
1252
1253     /*!
1254      *  Return all blocks, containing all the elements, passed as the parts.
1255      *  \param theCompound Compound, to find blocks in.
1256      *  \param theParts List of faces and/or edges and/or vertices to be parts of the found blocks.
1257      *  \return List of GEOM_Objects, containing the found blocks.
1258      */
1259     ListOfGO GetBlocksByParts (in GEOM_Object theCompound,
1260                                in ListOfGO    theParts);
1261
1262     /*!
1263      *  Operations on blocks with gluing of result
1264      */
1265
1266     /*!
1267      *  Multi-transformate block and glue the result.
1268      *  Transformation is defined so, as to superpose theDirFace1 with theDirFace2.
1269      *  \param theBlock Hexahedral solid to be multi-transformed.
1270      *  \param theDirFace1 First direction face global index.
1271      *  \param theDirFace2 Second direction face global index.
1272      *  \param theNbTimes Quantity of transformations to be done.
1273      *    \note Global index of sub-shape can be obtained, using method
1274      *          <VAR>GEOM_ILocalOperations.GetSubShapeIndex()</VAR>.
1275      *  \return New GEOM_Object, containing the result shape.
1276      */
1277     GEOM_Object MakeMultiTransformation1D (in GEOM_Object theBlock,
1278                                            in long        theDirFace1,
1279                                            in long        theDirFace2,
1280                                            in long        theNbTimes);
1281
1282     /*!
1283      *  Multi-transformate block and glue the result.
1284      *  \param theBlock Hexahedral solid to be multi-transformed.
1285      *  \param theDirFace1U,theDirFace2U Direction faces for the first transformation.
1286      *  \param theDirFace1V,theDirFace2V Direction faces for the second transformation.
1287      *  \param theNbTimesU,theNbTimesV Quantity of transformations to be done.
1288      *  \return New GEOM_Object, containing the result shape.
1289      */
1290     GEOM_Object MakeMultiTransformation2D (in GEOM_Object theBlock,
1291                                            in long        theDirFace1U,
1292                                            in long        theDirFace2U,
1293                                            in long        theNbTimesU,
1294                                            in long        theDirFace1V,
1295                                            in long        theDirFace2V,
1296                                            in long        theNbTimesV);
1297
1298     /*!
1299      *  Special operation - propagation
1300      */
1301
1302     /*!
1303      *  Build all possible propagation groups.
1304      *  Propagation group is a set of all edges, opposite to one (main)
1305      *  edge of this group directly or through other opposite edges.
1306      *  Notion of Opposite Edge make sence only on quadrangle face.
1307      *  \param theShape Shape to build propagation groups on.
1308      *  \return List of GEOM_Objects, each of them is a propagation group.
1309      */
1310     ListOfGO Propagate (in GEOM_Object theShape);
1311   };
1312
1313   /*!
1314    *  GEOM_IBooleanOperations: Interface for boolean operations (Cut, Fuse, Common)
1315    */
1316   interface GEOM_IBooleanOperations : GEOM_IOperations
1317   {
1318     /*!
1319      *  Perform one of boolean operations on two given shapes.
1320      *  \param theShape1 First argument for boolean operation.
1321      *  \param theShape2 Second argument for boolean operation.
1322      *  \param theOperation Indicates the operation to be done:
1323      *                      1 - Common, 2 - Cut, 3 - Fuse, 4 - Section.
1324      *  \return New GEOM_Object, containing the result shape.
1325      */
1326     GEOM_Object MakeBoolean (in GEOM_Object theShape1,
1327                              in GEOM_Object theShape2,
1328                              in long theOperation);
1329
1330     /*!
1331      *  Perform partition operation.
1332      *  \param theShapes Shapes to be intersected.
1333      *  \param theTools Shapes to intersect theShapes.
1334      *  \param theKeepInside Shapes, outside which the results will be deleted.
1335      *         Each shape from theKeepInside must belong to theShapes also.
1336      *  \param theRemoveInside Shapes, inside which the results will be deleted.
1337      *         Each shape from theRemoveInside must belong to theShapes also.
1338      *  \param theLimit Type of resulting shapes (corresponding to TopAbs_ShapeEnum).
1339      *  \param theRemoveWebs If TRUE, perform Glue 3D algorithm.
1340      *  \param theMaterials Material indices for each shape. Make sence, only if theRemoveWebs is TRUE.
1341      *  \return New GEOM_Object, containing the result shapes.
1342      */
1343     GEOM_Object MakePartition (in ListOfGO   theShapes,
1344                                in ListOfGO   theTools,
1345                                in ListOfGO   theKeepInside,
1346                                in ListOfGO   theRemoveInside,
1347                                in short      theLimit,
1348                                in boolean    theRemoveWebs,
1349                                in ListOfLong theMaterials);
1350
1351     /*!
1352      *  Perform partition of the Shape with the Plane
1353      *  \param theShape Shape to be intersected.
1354      *  \param thePlane Tool shape, to intersect theShape.
1355      *  \return New GEOM_Object, containing the result shape.
1356      */
1357     GEOM_Object MakeHalfPartition (in GEOM_Object theShape,
1358                                    in GEOM_Object thePlane);
1359   };
1360
1361   /*!
1362    *  GEOM_ICurvesOperations: Interface for curves creation.
1363    *  Polyline, Circle, Spline (Bezier and Interpolation)
1364    */
1365   interface GEOM_ICurvesOperations : GEOM_IOperations
1366   {
1367     /*!
1368      *  Create a circle with given center, normal vector and radius.
1369      *  \param thePnt Circle center.
1370      *  \param theVec Vector, normal to the plane of the circle.
1371      *  \param theR Circle radius.
1372      *  \return New GEOM_Object, containing the created circle.
1373      */
1374     GEOM_Object MakeCirclePntVecR (in GEOM_Object thePnt,
1375                                    in GEOM_Object theVec,
1376                                    in double theR);
1377     /*!
1378      *  Create a circle, passing through three given points
1379      *  \param thePnt1,thePnt2,thePnt3 Points, defining the circle.
1380      *  \return New GEOM_Object, containing the created circle.
1381      */
1382     GEOM_Object MakeCircleThreePnt (in GEOM_Object thePnt1,
1383                                     in GEOM_Object thePnt2,
1384                                     in GEOM_Object thePnt3);
1385
1386     /*!
1387      *  Create an ellipse with given center, normal vector and radiuses.
1388      *  \param thePnt Ellipse center.
1389      *  \param theVec Vector, normal to the plane of the ellipse.
1390      *  \param theRMajor Major ellipse radius.
1391      *  \param theRMinor Minor ellipse radius.
1392      *  \return New GEOM_Object, containing the created ellipse.
1393      */
1394     GEOM_Object MakeEllipse (in GEOM_Object thePnt,
1395                              in GEOM_Object theVec,
1396                              in double theRMajor,
1397                              in double theRMinor);
1398
1399     /*!
1400      *  Create an arc of circle, passing through three given points.
1401      *  \param thePnt1 Start point of the arc.
1402      *  \param thePnt2 Middle point of the arc.
1403      *  \param thePnt3 End point of the arc.
1404      *  \return New GEOM_Object, containing the created arc.
1405      */
1406     GEOM_Object MakeArc (in GEOM_Object thePnt1,
1407                          in GEOM_Object thePnt2,
1408                          in GEOM_Object thePnt3);
1409
1410     /*!
1411      *  Create a polyline on the set of points.
1412      *  \param thePoints Sequence of points for the polyline.
1413      *  \return New GEOM_Object, containing the created polyline.
1414      */
1415     GEOM_Object MakePolyline (in ListOfGO thePoints);
1416
1417     /*!
1418      *  Create bezier curve on the set of points.
1419      *  \param thePoints Sequence of points for the bezier curve.
1420      *  \return New GEOM_Object, containing the created bezier curve.
1421      */
1422     GEOM_Object MakeSplineBezier (in ListOfGO thePoints);
1423
1424     /*!
1425      *  Create B-Spline curve on the set of points.
1426      *  \param thePoints Sequence of points for the B-Spline curve.
1427      *  \return New GEOM_Object, containing the created B-Spline curve.
1428      */
1429     GEOM_Object MakeSplineInterpolation (in ListOfGO thePoints);
1430
1431     /*!
1432      *  Create a sketcher (wire or face), following the textual description,
1433      *  passed through \a theCommand argument. \n
1434      *  Edges of the resulting wire or face will be arcs of circles and/or linear segments. \n
1435      *  Format of the description string have to be the following:
1436      *
1437      *  "Sketcher[:F x1 y1]:CMD[:CMD[:CMD...]]"
1438      *
1439      *  Where:
1440      *  - x1, y1 are coordinates of the first sketcher point (zero by default),
1441      *  - CMD is one of
1442      *     - "R angle" : Set the direction by angle
1443      *     - "D dx dy" : Set the direction by DX & DY
1444      *     .
1445      *       \n
1446      *     - "TT x y" : Create segment by point at X & Y
1447      *     - "T dx dy" : Create segment by point with DX & DY
1448      *     - "L length" : Create segment by direction & Length
1449      *     - "IX x" : Create segment by direction & Intersect. X
1450      *     - "IY y" : Create segment by direction & Intersect. Y
1451      *     .
1452      *       \n
1453      *     - "C radius length" : Create arc by direction, radius and length(in degree)
1454      *     .
1455      *       \n
1456      *     - "WW" : Close Wire (to finish)
1457      *     - "WF" : Close Wire and build face (to finish)
1458      *
1459      *  \param theCommand String, defining the sketcher in local
1460      *                    coordinates of the working plane.
1461      *  \param theWorkingPlane Nine double values, defining origin,
1462      *                         OZ and OX directions of the working plane.
1463      *  \return New GEOM_Object, containing the created wire.
1464      */
1465     GEOM_Object MakeSketcher (in string theCommand, in ListOfDouble theWorkingPlane);
1466   };
1467
1468   /*!
1469    *  GEOM_ILocalOperations: Interface for fillet and chamfer creation.
1470    */
1471   interface GEOM_ILocalOperations : GEOM_IOperations
1472   {
1473     /*!
1474      *  Perform a fillet on all edges of the given shape.
1475      *  \param theShape Shape, to perform fillet on.
1476      *  \param theR Fillet radius.
1477      *  \return New GEOM_Object, containing the result shape.
1478      */
1479     GEOM_Object MakeFilletAll (in GEOM_Object theShape,
1480                                in double      theR);
1481
1482     /*!
1483      *  Perform a fillet on the specified edges of the given shape
1484      *  \param theShape Shape, to perform fillet on.
1485      *  \param theR Fillet radius.
1486      *  \param theEdges Global indices of edges to perform fillet on.
1487      *    \note Global index of sub-shape can be obtained, using method <VAR>GetSubShapeIndex()</VAR>.
1488      *  \return New GEOM_Object, containing the result shape.
1489      */
1490     GEOM_Object MakeFilletEdges (in GEOM_Object theShape,
1491                                  in double      theR,
1492                                  in ListOfLong  theEdges);
1493
1494     /*!
1495      *  Perform a fillet on all edges of the specified faces of the given shape.
1496      *  \param theShape Shape, to perform fillet on.
1497      *  \param theR Fillet radius.
1498      *  \param theFaces Global indices of faces to perform fillet on.
1499      *    \note Global index of sub-shape can be obtained, using method <VAR>GetSubShapeIndex()</VAR>.
1500      *  \return New GEOM_Object, containing the result shape.
1501      */
1502     GEOM_Object MakeFilletFaces (in GEOM_Object theShape,
1503                                  in double      theR,
1504                                  in ListOfLong  theFaces);
1505
1506     /*!
1507      *  Perform a symmetric chamfer on all edges of the given shape.
1508      *  \param theShape Shape, to perform chamfer on.
1509      *  \param theD Chamfer size along each face.
1510      *  \return New GEOM_Object, containing the result shape.
1511      */
1512     GEOM_Object MakeChamferAll (in GEOM_Object theShape,
1513                                 in double      theD);
1514
1515     /*!
1516      *  Perform a chamfer on edges, common to the specified faces.
1517      *  with distance D1 on the Face1
1518      *  \param theShape Shape, to perform chamfer on.
1519      *  \param theD1 Chamfer size along \a theFace1.
1520      *  \param theD2 Chamfer size along \a theFace2.
1521      *  \param theFace1,theFace2 Global indices of two faces of \a theShape.
1522      *    \note Global index of sub-shape can be obtained, using method <VAR>GetSubShapeIndex()</VAR>.
1523      *  \return New GEOM_Object, containing the result shape.
1524      */
1525     GEOM_Object MakeChamferEdge (in GEOM_Object theShape,
1526                                  in double theD1, in double theD2,
1527                                  in long theFace1, in long theFace2);
1528
1529     /*!
1530      *  Perform a chamfer on all edges of the specified faces.
1531      *  with distance D1 on the first specified face (if several for one edge)
1532      *  \param theShape Shape, to perform chamfer on.
1533      *  \param theD1 Chamfer size along face from \a theFaces. If both faces,
1534      *               connected to the edge, are in \a theFaces, \a theD1
1535      *               will be get along face, which is nearer to \a theFaces beginning.
1536      *  \param theD2 Chamfer size along another of two faces, connected to the edge.
1537      *  \param theFaces Sequence of global indices of faces of \a theShape.
1538      *    \note Global index of sub-shape can be obtained, using method <VAR>GetSubShapeIndex()</VAR>.
1539      *  \return New GEOM_Object, containing the result shape.
1540      */
1541     GEOM_Object MakeChamferFaces (in GEOM_Object theShape,
1542                                   in double theD1, in double theD2,
1543                                   in ListOfLong theFaces);
1544
1545     /*!
1546      *  Perform an Archimde operation on the given shape with given parameters.
1547      *                    The object presenting the resulting face is returned
1548      *  \param theShape Shape to be put in water.
1549      *  \param theWeight Weight og the shape.
1550      *  \param theWaterDensity Density of the water.
1551      *  \param theMeshDeflection Deflection od the mesh, using to compute the section.
1552      *  \return New GEOM_Object, containing a section of \a theShape
1553      *          by a plane, corresponding to water level.
1554      */
1555     GEOM_Object MakeArchimede (in GEOM_Object theShape,
1556                                in double theWeight,
1557                                in double theWaterDensity,
1558                                in double theMeshDeflection);
1559
1560     /*!
1561      *  Get global index of \a theSubShape in \a theShape.
1562      *  \param theShape Main shape.
1563      *  \param theSubShape Sub-shape of the main shape.
1564      *  \return global index of \a theSubShape in \a theShape.
1565      */
1566     long GetSubShapeIndex (in GEOM_Object theShape, in GEOM_Object theSubShape);
1567   };
1568
1569   /*!
1570    *  GEOM_IHealingOperations: Interface for shape healing operations.
1571    *  Shape Processing, SuppressFaces, etc.
1572    */
1573   interface GEOM_IHealingOperations : GEOM_IOperations
1574   {
1575     /*!
1576      *  Apply a sequence of Shape Healing operators to the given object.
1577      *  \param theShapes Shape to be processed.
1578      *  \param theOperators List of names of operators ("FixShape", "SplitClosedFaces", etc.).
1579      *  \param theParameters List of names of parameters
1580      *                    ("FixShape.Tolerance3d", "SplitClosedFaces.NbSplitPoints", etc.).
1581      *  \param theValues List of values of parameters, in the same order
1582      *                    as parameters are listed in \a theParameters list.
1583      *  \return New GEOM_Object, containing processed shape.
1584      */
1585     GEOM_Object ProcessShape (in GEOM_Object theShapes,
1586                               in string_array theOperators,
1587                               in string_array theParameters,
1588                               in string_array theValues);
1589
1590     /*!
1591      *  Get default sequence of operators, their parameters and parameters' values
1592      *  of Shape Process operation. In the current implementation the defaults are
1593      *  read from the file pointed by CSF_ShHealingDefaults environmental variable.
1594      *  \param theOperators Output. Default list of names of operators.
1595      *  \param theParameters Output. Default list of names of parameters.
1596      *  \param theValues Output. List of default values of parameters, in the same order
1597      *                           as parameters are listed in \a theParameters list.
1598      */
1599     void GetShapeProcessParameters (out string_array theOperators,
1600                                     out string_array theParameters,
1601                                     out string_array theValues);
1602     /*!
1603      *  Get parameters and parameters' values for the given Shape Process operation.
1604      *  In the current implementation the defaults are
1605      *  read from the file pointed by CSF_ShHealingDefaults environmental variable.
1606      *  \param theOperator Input. The operator's name.
1607      *  \param theParameters Output. Default list of names of parameters.
1608      *  \param theValues Output. List of default values of parameters, in the same order
1609      *                           as parameters are listed in \a theParameters list.
1610      */
1611     void GetOperatorParameters (in string theOperator,
1612                                 out string_array theParameters,
1613                                 out string_array theValues);
1614
1615     /*!
1616      *  Remove faces from the given object (shape).
1617      *  \param theObject Shape to be processed.
1618      *  \param theFaces Indices of faces to be removed, if EMPTY then the method
1619      *                  removes ALL faces of the given object.
1620      *  \return New GEOM_Object, containing processed shape.
1621      */
1622     GEOM_Object SuppressFaces (in GEOM_Object theObject, in short_array theFaces);
1623
1624     /*!
1625      *  Close an open wire.
1626      *  \param theObject Shape to be processed.
1627      *  \param theWires Indexes of edge(s) and wire(s) to be closed within <VAR>theObject</VAR>'s shape,
1628      *                  if -1, then theObject itself is a wire.
1629      *  \param isCommonVertex If TRUE : closure by creation of a common vertex,
1630      *                        If FALS : closure by creation of an edge between ends.
1631      *  \return New GEOM_Object, containing processed shape.
1632      */
1633     GEOM_Object CloseContour (in GEOM_Object theObject, in short_array theWires,
1634                               in boolean isCommonVertex);
1635
1636     /*!
1637      *  Remove internal wires and edges from the given object (face).
1638      *  \param theObject Shape to be processed.
1639      *  \param theWires Indices of wires to be removed, if EMPTY then the method
1640      *                  removes ALL internal wires of the given object.
1641      *  \return New GEOM_Object, containing processed shape.
1642      */
1643     GEOM_Object RemoveIntWires (in GEOM_Object theObject, in short_array theWires);
1644
1645     /*!
1646      *  Remove internal closed contours (holes) from the given object.
1647      *  \param theObject Shape to be processed.
1648      *  \param theWires Indices of wires to be removed, if EMPTY then the method
1649      *                  removes ALL internal holes of the given object
1650      *  \return New GEOM_Object, containing processed shape.
1651      */
1652     GEOM_Object FillHoles (in GEOM_Object theObject, in short_array theWires);
1653
1654     /*!
1655      *  Sewing of the given object.
1656      *  \param theObject Shape to be processed.
1657      *  \param theTolerance Required tolerance value.
1658      *  \return New GEOM_Object, containing processed shape.
1659      */
1660     GEOM_Object Sew (in GEOM_Object theObject, in double theTolerance);
1661
1662     /*!
1663      *  Addition of a point to a given edge object.
1664      *  \param theObject Shape to be processed.
1665      *  \param theEdgeIndex Index of edge to be divided within theObject's shape,
1666      *                      if -1, then theObject itself is the edge.
1667      *  \param theValue Value of parameter on edge or length parameter,
1668      *                  depending on \a isByParameter.
1669      *  \param isByParameter If TRUE : \a theValue is treated as a curve parameter [0..1],
1670      *                       if FALSE : \a theValue is treated as a length parameter [0..1]
1671      *  \return New GEOM_Object, containing processed shape.
1672      */
1673     GEOM_Object DivideEdge (in GEOM_Object theObject, in short theEdgeIndex,
1674                             in double theValue, in boolean isByParameter);
1675
1676     /*!
1677      *  Get a list of wires (wrapped in GEOM_Object-s),
1678      *  that constitute a free boundary of the given shape.
1679      *  \param theObject Shape to get free boundary of.
1680      *  \param theClosedWires Output. Closed wires on the free boundary of the given shape.
1681      *  \param theOpenWires Output. Open wires on the free boundary of the given shape.
1682      *  \return FALSE, if an error(s) occured during the method execution.
1683      */
1684     boolean GetFreeBoundary (in GEOM_Object theObject,
1685                              out ListOfGO theClosedWires,
1686                              out ListOfGO theOpenWires);
1687   };
1688
1689   /*!
1690    *  GEOM_IInsertOperations: Interface for shape insert operations (like copy, import).
1691    *
1692    */
1693   interface GEOM_IInsertOperations : GEOM_IOperations
1694   {
1695     /*!
1696      *  Create a copy of the given object
1697      */
1698     GEOM_Object MakeCopy (in GEOM_Object theOriginal);
1699
1700     /*!
1701      *  Export the given shape into a file with given name.
1702      *  \param theObject Shape to be stored in the file.
1703      *  \param theFileName Name of the file to store the given shape in.
1704      *  \param theFormatName Specify format for the shape storage.
1705      *         Available formats can be obtained with <VAR>ImportTranslators()</VAR> method.
1706      */
1707     void Export (in GEOM_Object theObject, in string theFileName, in string theFormatName);
1708
1709     /*!
1710      *  Import a shape from the BRep or IGES or STEP file
1711      *  (depends on given format) with given name.
1712      *  \param theFileName The file, containing the shape.
1713      *  \param theFormatName Specify format for the file reading.
1714      *         Available formats can be obtained with <VAR>ImportTranslators()</VAR> method.
1715      *  \return New GEOM_Object, containing the imported shape.
1716      */
1717     GEOM_Object Import (in string theFileName, in string theFormatName);
1718
1719     /*!
1720      *  Get the supported import formats and corresponding patterns for File dialog.
1721      *  \param theFormats Output. List of formats, available for import.
1722      *  \param thePatterns Output. List of file patterns, corresponding to available formats.
1723      *  \return Returns available formats and patterns through the arguments.
1724      */
1725     void ImportTranslators (out string_array theFormats,
1726                             out string_array thePatterns);
1727
1728     /*!
1729      *  Get the supported export formats and corresponding patterns for File dialog.
1730      *  \param theFormats Output. List of formats, available for export.
1731      *  \param thePatterns Output. List of file patterns, corresponding to available formats.
1732      *  \return Returns available formats and patterns through the arguments.
1733      */
1734     void ExportTranslators (out string_array theFormats,
1735                             out string_array thePatterns);
1736   };
1737
1738   /*!
1739    *  GEOM_IMeasureOperations: Interface for measurement (distance, whatis) and
1740    *  properties calculation (like Centre of Mass, Inertia, etc.).
1741    *
1742    */
1743   interface GEOM_IMeasureOperations : GEOM_IOperations
1744   {
1745     /*!
1746      *  Get summarized length of all wires,
1747      *  area of surface and volume of the given shape.
1748      *  \param theShape Shape to define properties of.
1749      *  \param theLength Output. Summarized length of all wires of the given shape.
1750      *  \param theSurfArea Output. Area of surface of the given shape.
1751      *  \param theVolume Output. Volume of the given shape.
1752      *  \return Returns shape properties through the last three arguments.
1753      */
1754     void GetBasicProperties (in GEOM_Object theShape,
1755                              out double theLength,
1756                              out double theSurfArea,
1757                              out double theVolume);
1758
1759     /*!
1760      *  Get a point, situated at the centre of mass of theShape.
1761      *  \param theShape Shape to define centre of mass of.
1762      *  \return New GEOM_Object, containing the created point.
1763      */
1764     GEOM_Object GetCentreOfMass (in GEOM_Object theShape);
1765
1766     /*!
1767      *  Get inertia matrix and moments of inertia of theShape.
1768      *  \param theShape Shape to calculate inertia of.
1769      *  \param I(1-3)(1-3) Output. Components of the inertia matrix of the given shape.
1770      *  \param Ix,Iy,Iz Output. Moments of inertia of the given shape.
1771      *  \return Returns inertia through the last twelve arguments.
1772      */
1773     void GetInertia (in GEOM_Object theShape,
1774                      out double I11, out double I12, out double I13,
1775                      out double I21, out double I22, out double I23,
1776                      out double I31, out double I32, out double I33,
1777                      out double Ix , out double Iy , out double Iz);
1778
1779     /*!
1780      *  Get parameters of bounding box of the given shape
1781      *  \param theShape Shape to obtain bounding box of.
1782      *  \param Xmin,Xmax Output. Limits of shape along OX axis.
1783      *  \param Ymin,Ymax Output. Limits of shape along OY axis.
1784      *  \param Zmin,Zmax Output. Limits of shape along OZ axis.
1785      *  \return Returns parameters of bounding box through the last six arguments.
1786      */
1787     void GetBoundingBox (in GEOM_Object theShape,
1788                          out double Xmin, out double Xmax,
1789                          out double Ymin, out double Ymax,
1790                          out double Zmin, out double Zmax);
1791
1792     /*!
1793      *  Get min and max tolerances of sub-shapes of theShape
1794      *  \param theShape Shape, to get tolerances of.
1795      *  \param FaceMin,FaceMax Output. Min and max tolerances of the faces.
1796      *  \param EdgeMin,EdgeMax Output. Min and max tolerances of the edges.
1797      *  \param VertMin,VertMax Output. Min and max tolerances of the vertices.
1798      *  \return Returns shape tolerances through the last six arguments.
1799      */
1800     void GetTolerance (in GEOM_Object theShape,
1801                        out double FaceMin, out double FaceMax,
1802                        out double EdgeMin, out double EdgeMax,
1803                        out double VertMin, out double VertMax);
1804
1805     /*!
1806      *  Check a topology of the given shape.
1807      *  \param theShape Shape to check validity of.
1808      *  \param theDescription Output. Description of problems in the shape, if they are.
1809      *  \return TRUE, if the shape "seems to be valid" from the topological point of view.
1810      */
1811     boolean CheckShape (in GEOM_Object theShape,
1812                         out string     theDescription);
1813
1814     /*!
1815      *  Obtain description of the given shape
1816      *  \param theShape Shape to be described.
1817      *  \return Description of the given shape.
1818      */
1819     string WhatIs (in GEOM_Object theShape);
1820
1821     /*!
1822      *  Get minimal distance between the given shapes.
1823      *  \param theShape1,theShape2 Shapes to find minimal distance between.
1824      *  \param X1,Y1,Z1 Output. Coordinates of point on theShape1, nearest to theShape2.
1825      *  \param X2,Y2,Z2 Output. Coordinates of point on theShape2, nearest to theShape1.
1826      *  \return Value of the minimal distance between the given shapes.
1827      */
1828     double GetMinDistance (in GEOM_Object theShape1, in GEOM_Object theShape2,
1829                            out double X1, out double Y1, out double Z1,
1830                            out double X2, out double Y2, out double Z2);
1831
1832
1833     /*!
1834      *  Get point coordinates
1835      */
1836     void PointCoordinates (in GEOM_Object theShape, out double X, out double Y, out double Z);
1837   };
1838
1839
1840   /*!
1841    *  GEOM_IGroupOperations: Interface for groups creation.
1842    */
1843   interface GEOM_IGroupOperations : GEOM_IOperations
1844   {
1845     /*!
1846      *  Creates a new group which will store  sub shapes of theMainShape
1847      *  \param theMainShape is a GEOM object on which the group is selected
1848      *  \param theShapeType defines a shape type of the group
1849      *  \return a newly created GEOM group
1850      */
1851     GEOM_Object CreateGroup (in GEOM_Object theMainShape, in long theShapeType);
1852
1853     /*!
1854      *  Adds a sub object with ID theSubShapeId to the group
1855      *  \param theGroup is a GEOM group to which the new sub shape is added
1856      *  \param theSubShapeId is a sub shape ID in the main object.
1857      *  \note Use method <VAR>ILocalOperations.GetSubShapeIndex()</VAR> to get an ID by the sub shape
1858      */
1859     void AddObject (in GEOM_Object theGroup, in long theSubShapeId);
1860
1861     /*!
1862      *  Removes a sub object with ID \a theSubShapeId from the group
1863      *  \param theGroup is a GEOM group from which the new sub shape is removed
1864      *  \param theSubShapeId is a sub shape ID in the main object.
1865      *  \note Use method <VAR>ILocalOperations.GetSubShapeIndex()</VAR> to get an ID by the sub shape
1866      */
1867     void RemoveObject (in GEOM_Object theGroup, in long theSubShapeId);
1868
1869     /*!
1870      *  Returns a type of sub objects stored in the group
1871      *  \param theGroup is a GEOM group which type is returned.
1872      */
1873     long GetType (in GEOM_Object theGroup);
1874
1875     /*!
1876      *  Returns a main shape associated with the group
1877      *  \param theGroup is a GEOM group for which a main shape object is requested
1878      *  \return a GEOM object which is a main shape for theGroup
1879      */
1880     GEOM_Object GetMainShape (in GEOM_Object theGroup);
1881
1882     /*!
1883      *  Returns a list of sub objects ID stored in the group
1884      *  \param theGroup is a GEOM group for which a list of IDs is requested
1885      */
1886     ListOfLong GetObjects (in GEOM_Object theGroup);
1887   };
1888
1889
1890   /*!
1891    *  GEOM_Gen: Interface to access other GEOM interfaces.
1892    *  Also contains some methods to access and manage GEOM objects.
1893    */
1894   interface GEOM_Gen : Engines::Component,SALOMEDS::Driver
1895   {
1896     /*!
1897      *  Undo/Redo Management
1898      */
1899
1900     void Undo (in long theStudyID);
1901
1902     void Redo (in long theStudyID);
1903
1904     /*!
1905      * Publishing manangement
1906      * Adds in theStudy a object theObject under with a name theName,
1907      * if theFather is not NULL the object is placed under thFather's SObject.
1908      * Returns a SObject where theObject is placed
1909      */
1910     SALOMEDS::SObject AddInStudy (in SALOMEDS::Study theStudy,
1911                                   in GEOM_Object theObject,
1912                                   in string theName,
1913                                   in GEOM_Object theFather);
1914
1915     /*!
1916      *  Methods to access interfaces for objects creation and transformation
1917      */
1918     GEOM_IBasicOperations     GetIBasicOperations    (in long theStudyID) raises (SALOME::SALOME_Exception);
1919     GEOM_ITransformOperations GetITransformOperations(in long theStudyID) raises (SALOME::SALOME_Exception);
1920     GEOM_I3DPrimOperations    GetI3DPrimOperations   (in long theStudyID) raises (SALOME::SALOME_Exception);
1921     GEOM_IShapesOperations    GetIShapesOperations   (in long theStudyID) raises (SALOME::SALOME_Exception);
1922     GEOM_IBooleanOperations   GetIBooleanOperations  (in long theStudyID) raises (SALOME::SALOME_Exception);
1923     GEOM_ICurvesOperations    GetICurvesOperations   (in long theStudyID) raises (SALOME::SALOME_Exception);
1924     GEOM_ILocalOperations     GetILocalOperations    (in long theStudyID) raises (SALOME::SALOME_Exception);
1925     GEOM_IHealingOperations   GetIHealingOperations  (in long theStudyID) raises (SALOME::SALOME_Exception);
1926     GEOM_IInsertOperations    GetIInsertOperations   (in long theStudyID) raises (SALOME::SALOME_Exception);
1927     GEOM_IMeasureOperations   GetIMeasureOperations  (in long theStudyID) raises (SALOME::SALOME_Exception);
1928     GEOM_IBlocksOperations    GetIBlocksOperations   (in long theStudyID) raises (SALOME::SALOME_Exception);
1929     GEOM_IGroupOperations     GetIGroupOperations    (in long theStudyID) raises (SALOME::SALOME_Exception);
1930
1931     /*!
1932      *  Objects Management
1933      */
1934
1935     /*!
1936      *  Removes the object from the GEOM component
1937      *  \param theObject is a GEOM object to be removed
1938      */
1939     void RemoveObject (in GEOM_Object theObject);
1940
1941     /*!
1942      *  Returns an object defined by the study and its entry in the GEOM component
1943      *  \param theStudyID is a SALOMEDS Study ID
1944      *  \param theEntry is an entry of the requested GEOM object in the GEOM component
1945      *  \note if the object has not previously been created a NULL GEOM object is returned
1946      */
1947     GEOM_Object GetObject (in long theStudyID, in string theEntry);
1948
1949     /*!
1950      *  Add a sub shape defined by indices in \a theIndices
1951      *  (contains unique IDs of sub shapes inside theMainShape)
1952      *  \note The sub shape GEOM_Objects can has ONLY ONE function.
1953      *        Don't try to apply modification operations on them.
1954      *  \note Internal method
1955      */
1956     GEOM_Object AddSubShape (in GEOM_Object theMainShape, in ListOfLong theIndices);
1957
1958     /*!
1959      *  GEOM object's IOR Management
1960      */
1961
1962     /*!
1963      *  Returns a GEOM Object defined by its IOR
1964      *  \param theIOR a string containg an IOR of the requested GEOM object
1965      */
1966     GEOM_Object GetIORFromString (in string theIOR);
1967
1968     /*!
1969      *  Returns a string which contains an IOR of the GEOM object
1970      *  \param theObject is a GEOM object which IOR is requested
1971      */
1972     string GetStringFromIOR (in GEOM_Object theObject);
1973   };
1974 };
1975
1976 #endif