Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/geom.git] / src / GEOMImpl / GEOMImpl_IShapesOperations.hxx
1 // Copyright (C) 2007-2012  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
23 //=============================================================================
24 // File      : GEOMImpl_IShapesOperations.hxx
25 // Created   :
26 // Author    : modified by Lioka RAZAFINDRAZAKA (CEA) 22/06/2007
27 // Project   : SALOME
28 //=============================================================================
29
30 #ifndef _GEOMImpl_IShapesOperations_HXX_
31 #define _GEOMImpl_IShapesOperations_HXX_
32
33 #include "GEOM_IOperations.hxx"
34
35 #include "GEOMAlgo_State.hxx"
36
37 #include <TopoDS_Shape.hxx>
38 #include <TopTools_ListOfShape.hxx>
39 #include <NCollection_DataMap.hxx>
40 #include <TColStd_HSequenceOfTransient.hxx>
41 #include <TColStd_HSequenceOfInteger.hxx>
42
43 #include <Handle_Geom_Surface.hxx>
44
45 #include <gp_Pnt.hxx>
46
47 #include <list>
48 #include <functional>
49
50 class GEOM_Engine;
51 class Handle(GEOM_Object);
52 class Handle(TColStd_HArray1OfInteger);
53
54 inline Standard_Boolean IsEqual (const TopoDS_Shape& S1, const TopoDS_Shape& S2)
55 {
56   return S1.IsSame(S2);
57 }
58
59 class GEOMImpl_IShapesOperations : public GEOM_IOperations
60 {
61  public:
62   Standard_EXPORT GEOMImpl_IShapesOperations(GEOM_Engine* theEngine, int theDocID);
63   Standard_EXPORT ~GEOMImpl_IShapesOperations();
64
65   Standard_EXPORT Handle(GEOM_Object) MakeEdge (Handle(GEOM_Object) thePoint1,
66                                                 Handle(GEOM_Object) thePoint2);
67
68   Standard_EXPORT Handle(GEOM_Object) MakeEdgeOnCurveByLength (Handle(GEOM_Object) theCurve,
69                                                                const Standard_Real theLength,
70                                                                Handle(GEOM_Object) theStartPoint);
71
72   Standard_EXPORT Handle(GEOM_Object) MakeEdgeWire (Handle(GEOM_Object) theWire,
73                                                     const Standard_Real theLinearTolerance,
74                                                     const Standard_Real theAngularTolerance);
75
76   Standard_EXPORT Handle(GEOM_Object) MakeWire (std::list<Handle(GEOM_Object)> theEdgesAndWires,
77                                                 const Standard_Real            theTolerance);
78
79   Standard_EXPORT Handle(GEOM_Object) MakeFace (Handle(GEOM_Object) theWire, const bool isPlanarWanted);
80
81   Standard_EXPORT Handle(GEOM_Object) MakeFaceWires (std::list<Handle(GEOM_Object)> theWires,
82                                                      const bool isPlanarWanted);
83
84   Standard_EXPORT Handle(GEOM_Object) MakeShell (std::list<Handle(GEOM_Object)> theShapes);
85
86   Standard_EXPORT Handle(GEOM_Object) MakeSolidShells (std::list<Handle(GEOM_Object)> theShells);
87
88   Standard_EXPORT Handle(GEOM_Object) MakeCompound (std::list<Handle(GEOM_Object)> theShapes);
89
90   Standard_EXPORT Handle(GEOM_Object) MakeGlueFaces (Handle(GEOM_Object) theShape,
91                                                      const Standard_Real theTolerance,
92                                                      const Standard_Boolean doKeepNonSolids);
93
94   //Standard_EXPORT Handle(TColStd_HSequenceOfTransient) GetGlueFaces (Handle(GEOM_Object) theShape,
95   //                                                                   const Standard_Real theTolerance);
96
97   Standard_EXPORT Handle(GEOM_Object) MakeGlueFacesByList (Handle(GEOM_Object) theShape,
98                                                            const Standard_Real theTolerance,
99                                                            std::list<Handle(GEOM_Object)> theFaces,
100                                                            const Standard_Boolean doKeepNonSolids,
101                                                            const Standard_Boolean doGlueAllEdges);
102
103   Standard_EXPORT Handle(GEOM_Object) MakeGlueEdges (Handle(GEOM_Object) theShape,
104                                                      const Standard_Real theTolerance);
105
106   Standard_EXPORT Handle(TColStd_HSequenceOfTransient) GetGlueShapes (Handle(GEOM_Object) theShape,
107                                                                       const Standard_Real theTolerance,
108                                                                       const TopAbs_ShapeEnum theType);
109
110   Standard_EXPORT Handle(GEOM_Object) MakeGlueEdgesByList (Handle(GEOM_Object) theShape,
111                                                            const Standard_Real theTolerance,
112                                                            std::list<Handle(GEOM_Object)> theEdges);
113
114   Standard_EXPORT Handle(TColStd_HSequenceOfTransient) GetExistingSubObjects
115     (Handle(GEOM_Object)    theShape,
116      const Standard_Boolean theGroupsOnly);
117
118   enum ExplodeType {
119     EXPLODE_OLD_INCLUDE_MAIN,
120     EXPLODE_NEW_INCLUDE_MAIN,
121     EXPLODE_NEW_EXCLUDE_MAIN
122   };
123
124   Standard_EXPORT Handle(TColStd_HSequenceOfTransient) MakeExplode
125     (Handle(GEOM_Object)    theShape,
126      const Standard_Integer theShapeType,
127      const Standard_Boolean isSorted,
128      const ExplodeType      theExplodeType = EXPLODE_NEW_INCLUDE_MAIN);
129
130   Standard_EXPORT Handle(TColStd_HSequenceOfInteger) SubShapeAllIDs
131     (Handle(GEOM_Object)    theShape,
132      const Standard_Integer theShapeType,
133      const Standard_Boolean isSorted,
134      const ExplodeType      theExplodeType = EXPLODE_NEW_INCLUDE_MAIN);
135
136   Standard_EXPORT Handle(GEOM_Object) GetSubShape (Handle(GEOM_Object)    theMainShape,
137                                                    const Standard_Integer theID);
138
139   Standard_EXPORT Handle(TColStd_HSequenceOfTransient) MakeSubShapes
140     (Handle(GEOM_Object)              theMainShape,
141      Handle(TColStd_HArray1OfInteger) theIndices);
142
143   Standard_EXPORT Standard_Integer GetSubShapeIndex (Handle(GEOM_Object) theMainShape,
144                                                      Handle(GEOM_Object) theSubShape);
145
146   Standard_EXPORT Standard_Integer GetTopologyIndex (Handle(GEOM_Object) theMainShape,
147                                                      Handle(GEOM_Object) theSubShape);
148
149   Standard_EXPORT TCollection_AsciiString GetShapeTypeString (Handle(GEOM_Object) theShape);
150
151   Standard_EXPORT Standard_Integer NumberOfSubShapes (Handle(GEOM_Object)    theShape,
152                                                       const Standard_Integer theShapeType);
153
154   Standard_EXPORT Handle(GEOM_Object) ReverseShape(Handle(GEOM_Object) theShapes);
155
156   Standard_EXPORT Handle(TColStd_HSequenceOfInteger) GetFreeFacesIDs (Handle(GEOM_Object) theShape);
157
158   Standard_EXPORT Handle(TColStd_HSequenceOfTransient)
159     GetSharedShapes (Handle(GEOM_Object)    theShape1,
160                      Handle(GEOM_Object)    theShape2,
161                      const Standard_Integer theShapeType);
162
163   Standard_EXPORT Handle(TColStd_HSequenceOfTransient)
164     GetSharedShapes (std::list<Handle(GEOM_Object)> theShapes,
165                      const Standard_Integer         theShapeType);
166
167   Standard_EXPORT Handle(TColStd_HSequenceOfTransient)
168     GetShapesOnPlane (const Handle(GEOM_Object)& theShape,
169                       const Standard_Integer     theShapeType,
170                       const Handle(GEOM_Object)& theAx1,
171                       const GEOMAlgo_State       theState);
172
173   Standard_EXPORT Handle(TColStd_HSequenceOfTransient)
174     GetShapesOnPlaneWithLocation (const Handle(GEOM_Object)& theShape,
175                                   const Standard_Integer     theShapeType,
176                                   const Handle(GEOM_Object)& theAx1,
177                                   const Handle(GEOM_Object)& thePnt,
178                                   const GEOMAlgo_State       theState);
179
180
181   Standard_EXPORT Handle(TColStd_HSequenceOfTransient)
182     GetShapesOnCylinder (const Handle(GEOM_Object)& theShape,
183                          const Standard_Integer     theShapeType,
184                          const Handle(GEOM_Object)& theAxis,
185                          const Standard_Real        theRadius,
186                          const GEOMAlgo_State       theState);
187
188   Standard_EXPORT Handle(TColStd_HSequenceOfTransient)
189     GetShapesOnCylinderWithLocation (const Handle(GEOM_Object)& theShape,
190                                      const Standard_Integer     theShapeType,
191                                      const Handle(GEOM_Object)& theAxis,
192                                      const Handle(GEOM_Object)& thePnt,
193                                      const Standard_Real        theRadius,
194                                      const GEOMAlgo_State       theState);
195
196   Standard_EXPORT Handle(TColStd_HSequenceOfTransient)
197     GetShapesOnSphere (const Handle(GEOM_Object)& theShape,
198                        const Standard_Integer     theShapeType,
199                        const Handle(GEOM_Object)& theCenter,
200                        const Standard_Real        theRadius,
201                        const GEOMAlgo_State       theState);
202
203   Standard_EXPORT Handle(TColStd_HSequenceOfInteger)
204     GetShapesOnPlaneIDs (const Handle(GEOM_Object)& theShape,
205                          const Standard_Integer     theShapeType,
206                          const Handle(GEOM_Object)& theAx1,
207                          const GEOMAlgo_State       theState);
208
209   Standard_EXPORT Handle(TColStd_HSequenceOfInteger)
210     GetShapesOnPlaneWithLocationIDs (const Handle(GEOM_Object)& theShape,
211                                      const Standard_Integer     theShapeType,
212                                      const Handle(GEOM_Object)& theAx1,
213                                      const Handle(GEOM_Object)& thePnt,
214                                      const GEOMAlgo_State       theState);
215
216   Standard_EXPORT Handle(TColStd_HSequenceOfInteger)
217     GetShapesOnCylinderIDs (const Handle(GEOM_Object)& theShape,
218                             const Standard_Integer     theShapeType,
219                             const Handle(GEOM_Object)& theAxis,
220                             const Standard_Real        theRadius,
221                             const GEOMAlgo_State       theState);
222
223   Standard_EXPORT Handle(TColStd_HSequenceOfInteger)
224     GetShapesOnCylinderWithLocationIDs (const Handle(GEOM_Object)& theShape,
225                                         const Standard_Integer     theShapeType,
226                                         const Handle(GEOM_Object)& theAxis,
227                                         const Handle(GEOM_Object)& thePnt,
228                                         const Standard_Real        theRadius,
229                                         const GEOMAlgo_State       theState);
230
231   Standard_EXPORT Handle(TColStd_HSequenceOfInteger)
232     GetShapesOnSphereIDs (const Handle(GEOM_Object)& theShape,
233                           const Standard_Integer     theShapeType,
234                           const Handle(GEOM_Object)& theCenter,
235                           const Standard_Real        theRadius,
236                           const GEOMAlgo_State       theState);
237
238   /*!
239    * \brief Find sub-shapes complying with given status about quadrangle
240     * \param theShape - the shape to explore
241     * \param theShapeType - type of sub-shape of theShape
242     * \param theTopLeftPoint - top left quadrangle corner
243     * \param theTopRigthPoint - top right quadrangle corner
244     * \param theBottomLeftPoint - bottom left quadrangle corner
245     * \param theBottomRigthPoint - bottom right quadrangle corner
246     * \param theState - required state
247     * \retval Handle(TColStd_HSequenceOfInteger) - IDs of found sub-shapes
248    */
249   Standard_EXPORT Handle(TColStd_HSequenceOfTransient)
250     GetShapesOnQuadrangle (const Handle(GEOM_Object)& theShape,
251                            const Standard_Integer     theShapeType,
252                            const Handle(GEOM_Object)& theTopLeftPoint,
253                            const Handle(GEOM_Object)& theTopRigthPoint,
254                            const Handle(GEOM_Object)& theBottomLeftPoint,
255                            const Handle(GEOM_Object)& theBottomRigthPoint,
256                            const GEOMAlgo_State       theState);
257
258   /*!
259    * \brief Find IDs of sub-shapes complying with given status about quadrangle
260     * \param theShape - the shape to explore
261     * \param theShapeType - type of sub-shape of theShape
262     * \param theTopLeftPoint - top left quadrangle corner
263     * \param theTopRigthPoint - top right quadrangle corner
264     * \param theBottomLeftPoint - bottom left quadrangle corner
265     * \param theBottomRigthPoint - bottom right quadrangle corner
266     * \param theState - required state
267     * \retval Handle(TColStd_HSequenceOfInteger) - IDs of found sub-shapes
268    */
269   Standard_EXPORT Handle(TColStd_HSequenceOfInteger)
270     GetShapesOnQuadrangleIDs (const Handle(GEOM_Object)& theShape,
271                               const Standard_Integer     theShapeType,
272                               const Handle(GEOM_Object)& theTopLeftPoint,
273                               const Handle(GEOM_Object)& theTopRigthPoint,
274                               const Handle(GEOM_Object)& theBottomLeftPoint,
275                               const Handle(GEOM_Object)& theBottomRigthPoint,
276                               const GEOMAlgo_State       theState);
277
278   Standard_EXPORT Handle(GEOM_Object) GetShapesOnCylinderOld (Handle(GEOM_Object)    theShape,
279                                                               const Standard_Integer theShapeType,
280                                                               Handle(GEOM_Object)    theAxis,
281                                                               const Standard_Real    theRadius);
282
283   Standard_EXPORT Handle(GEOM_Object) GetShapesOnSphereOld (Handle(GEOM_Object)    theShape,
284                                                             const Standard_Integer theShapeType,
285                                                             Handle(GEOM_Object)    theCenter,
286                                                             const Standard_Real    theRadius);
287
288   void GetShapeProperties(const TopoDS_Shape aShape, Standard_Real propertiesArray[], gp_Pnt & aPnt);
289
290   Standard_EXPORT Handle(GEOM_Object) GetInPlace (Handle(GEOM_Object) theShapeWhere,
291                                                   Handle(GEOM_Object) theShapeWhat);
292
293   Standard_EXPORT Handle(GEOM_Object) GetInPlaceOld (Handle(GEOM_Object) theShapeWhere,
294                                                      Handle(GEOM_Object) theShapeWhat);
295
296   Standard_EXPORT Handle(GEOM_Object) GetInPlaceByHistory (Handle(GEOM_Object) theShapeWhere,
297                                                            Handle(GEOM_Object) theShapeWhat);
298
299   /*!
300    * \brief Searches a shape equal to theWhat in the context of theWhere
301    * \param theShapeWhere - a context shap
302    * \param theShapeWhat - a sample shape
303    * \retval Handle(GEOM_Object) - found shape
304    */
305   Standard_EXPORT Handle(GEOM_Object) GetSame(const Handle(GEOM_Object)& theShapeWhere,
306                                               const Handle(GEOM_Object)& theShapeWhat);
307
308   /*!
309    * \brief Searches a shape equal to theWhat in the context of theWhere
310    * \param theShapeWhere - a context shap
311    * \param theShapeWhat - a sample shape
312    * \retval Handle(TColStd_HSequenceOfInteger) - IDs of found sub-shapes
313    */
314   Standard_EXPORT Handle(TColStd_HSequenceOfInteger) GetSameIDs(const Handle(GEOM_Object)& theShapeWhere,
315                                                                  const Handle(GEOM_Object)& theShapeWhat);
316
317   /*!
318    * \brief Find IDs of sub-shapes complying with given status about surface
319     * \param theBox - the box to check state of sub-shapes against
320     * \param theShape - the shape to explore
321     * \param theShapeType - type of sub-shape of theShape
322     * \param theState - required state
323     * \retval Handle(TColStd_HSequenceOfInteger) - IDs of found sub-shapes
324    */
325   Standard_EXPORT Handle(TColStd_HSequenceOfInteger)
326                               GetShapesOnBoxIDs(const Handle(GEOM_Object)& theBox,
327                                                 const Handle(GEOM_Object)& theShape,
328                                                 const Standard_Integer theShapeType,
329                                                 GEOMAlgo_State theState);
330
331   /*!
332    * \brief Find sub-shapes complying with given status about surface
333    * \param theBox - the box to check state of sub-shapes against
334    * \param theShape - the shape to explore
335    * \param theShapeType - type of sub-shape of theShape
336    * \param theState - required state
337    * \retval Handle(TColStd_HSequenceOfTransient) - found shape objects
338    */
339   Standard_EXPORT Handle(TColStd_HSequenceOfTransient)
340                              GetShapesOnBox(const Handle(GEOM_Object)& theBox,
341                                             const Handle(GEOM_Object)& theShape,
342                                             const Standard_Integer theShapeType,
343                                             GEOMAlgo_State theState);
344
345   /*!
346    * \brief Find IDs of sub-shapes complying with given status about surface
347    * \param theCheckShape - the shape to check state of sub-shapes against
348    * \param theShape - the shape to explore
349    * \param theShapeType - type of sub-shape of theShape
350    * \param theState - required state
351    * \retval Handle(TColStd_HSequenceOfInteger) - IDs of found sub-shapes
352    */
353   Standard_EXPORT Handle(TColStd_HSequenceOfInteger)
354                    GetShapesOnShapeIDs(const Handle(GEOM_Object)& theCheckShape,
355                                        const Handle(GEOM_Object)& theShape,
356                                        const Standard_Integer theShapeType,
357                                        GEOMAlgo_State theState);
358
359   /*!
360    * \brief Find sub-shapes complying with given status about surface
361    * \param theCheckShape - the shape to check state of sub-shapes against
362    * \param theShape - the shape to explore
363    * \param theShapeType - type of sub-shape of theShape
364    * \param theState - required state
365    * \retval Handle(TColStd_HSequenceOfTransient) - found shape objects
366    */
367   Standard_EXPORT Handle(TColStd_HSequenceOfTransient)
368                       GetShapesOnShape(const Handle(GEOM_Object)& theCheckShape,
369                                        const Handle(GEOM_Object)& theShape,
370                                        const Standard_Integer theShapeType,
371                                        GEOMAlgo_State theState);
372   Standard_EXPORT Handle(GEOM_Object)
373             GetShapesOnShapeAsCompound(const Handle(GEOM_Object)& theCheckShape,
374                                        const Handle(GEOM_Object)& theShape,
375                                        const Standard_Integer theShapeType,
376                                        GEOMAlgo_State theState);
377
378  public:
379   /*!
380    * \brief Sort shapes in the list by their coordinates.
381    * \param SL The list of shapes to sort.
382    */
383   struct CompareShapes : public std::binary_function<TopoDS_Shape, TopoDS_Shape, bool>
384   {
385     CompareShapes (bool isOldSorting)
386       : myIsOldSorting(isOldSorting) {}
387
388     bool operator()(const TopoDS_Shape& lhs, const TopoDS_Shape& rhs);
389
390     typedef NCollection_DataMap<TopoDS_Shape, std::pair<double, double> > NCollection_DataMapOfShapeDouble;
391     NCollection_DataMapOfShapeDouble myMap;
392     bool myIsOldSorting;
393   };
394
395   Standard_EXPORT static void SortShapes (TopTools_ListOfShape& SL,
396                                           const Standard_Boolean isOldSorting = Standard_True);
397
398   /*!
399    * \brief Convert TopoDS_COMPSOLID to TopoDS_COMPOUND.
400    *
401    * If the argument shape is not of type TopoDS_COMPSOLID, this method returns it as is.
402    *
403    * \param theCompsolid The compsolid to be converted.
404    * \retval TopoDS_Shape Returns the resulting compound.
405    */
406   Standard_EXPORT static TopoDS_Shape CompsolidToCompound (const TopoDS_Shape& theCompsolid);
407
408   /*!
409    * \brief Build a triangulation on \a theShape if it is absent.
410    * \param theShape The shape to check/build triangulation on.
411    * \retval bool Returns false if the shape has no faces, i.e. impossible to build triangulation.
412    */
413   Standard_EXPORT static bool CheckTriangulation (const TopoDS_Shape& theShape);
414
415   /*!
416    * \brief Return type of shape for explode. In case of compound it will be a type of its first sub shape.
417    * \param theShape The shape to get type of.
418    * \retval TopAbs_ShapeEnum Return type of shape for explode.
419    */
420   Standard_EXPORT static TopAbs_ShapeEnum GetTypeOfSimplePart (const TopoDS_Shape& theShape);
421
422  private:
423   Handle(GEOM_Object) MakeShape (std::list<Handle(GEOM_Object)>      theShapes,
424                                  const Standard_Integer         theObjectType,
425                                  const Standard_Integer         theFunctionType,
426                                  const TCollection_AsciiString& theMethodName);
427
428 // ----------------------------------------------------
429 // methods common for all GetShapesOnXXX() functions
430 // ----------------------------------------------------
431
432   /*!
433    * \brief Checks if theShapeType parameter of GetShapesOnXXX() is OK
434    * \param theShapeType - the shape type to check
435    * \retval bool  - result of the check
436    */
437   bool checkTypeShapesOn(const Standard_Integer theShapeType);
438
439   /*!
440    * \brief Creates Geom_Plane
441    * \param theAx1 - edge defining plane normal
442    * \retval Handle(Geom_Surface) - resulting surface
443    */
444   Handle(Geom_Surface) makePlane(const TopoDS_Shape& theAx1);
445
446   /*!
447    * \brief Creates Geom_CylindricalSurface
448    * \param theAx1 - edge defining cylinder axis
449    * \param theRadius - cylinder radius
450    * \retval Handle(Geom_Surface) - resulting surface
451    */
452   Handle(Geom_Surface) makeCylinder(const TopoDS_Shape& theAx1,
453                                     const Standard_Real theRadius);
454
455   /*!
456    * \brief Find IDs of sub-shapes complying with given status about surface
457    * \param theSurface - the surface to check state of sub-shapes against
458    * \param theShape - the shape to explore
459    * \param theShapeType - type of sub-shape of theShape
460    * \param theState - required state
461    * \retval Handle(TColStd_HSequenceOfInteger) - IDs of found sub-shapes
462    */
463   Handle(TColStd_HSequenceOfInteger)
464     getShapesOnSurfaceIDs(const Handle(Geom_Surface)& theSurface,
465                           const TopoDS_Shape&         theShape,
466                           TopAbs_ShapeEnum            theShapeType,
467                           GEOMAlgo_State              theState);
468
469   /*!
470    * \brief Find sub-shapes complying with given status about surface
471    * \param theSurface - the surface to check state of sub-shapes against
472    * \param theShape - the shape to explore
473    * \param theShapeType - type of sub-shape of theShape
474    * \param theState - required state
475    * \param theShapeEntries - outgoing entries like "entry1, entry2, ..."
476    * \retval Handle(TColStd_HSequenceOfTransient) - found shape objects
477    */
478   Handle(TColStd_HSequenceOfTransient)
479     getShapesOnSurface(const Handle(Geom_Surface)& theSurface,
480                        const Handle(GEOM_Object)&  theShape,
481                        TopAbs_ShapeEnum            theShapeType,
482                        GEOMAlgo_State              theState,
483                        TCollection_AsciiString &   theShapeEntries);
484
485   /*!
486    * \brief Find IDs of sub-shapes complying with given status about quadrangle
487    * \param theShape - the shape to explore
488    * \param theShapeType - type of sub-shape of theShape
489    * \param theTopLeftPoint - top left quadrangle corner
490    * \param theTopRigthPoint - top right quadrangle corner
491    * \param theBottomLeftPoint - bottom left quadrangle corner
492    * \param theBottomRigthPoint - bottom right quadrangle corner
493    * \param theState - required state
494    * \retval Handle(TColStd_HSequenceOfInteger) - IDs of found sub-shapes
495    */
496   Handle(TColStd_HSequenceOfInteger)
497     getShapesOnQuadrangleIDs (const Handle(GEOM_Object)& theShape,
498                               const Standard_Integer     theShapeType,
499                               const Handle(GEOM_Object)& theTopLeftPoint,
500                               const Handle(GEOM_Object)& theTopRigthPoint,
501                               const Handle(GEOM_Object)& theBottomLeftPoint,
502                               const Handle(GEOM_Object)& theBottomRigthPoint,
503                               const GEOMAlgo_State       theState);
504
505   /*!
506    * \brief Find IDs of sub-shapes complying with given status about surface
507    * \param theBox - the box to check state of sub-shapes against
508    * \param theShape - the shape to explore
509    * \param theShapeType - type of sub-shape of theShape
510    * \param theState - required state
511    * \retval Handle(TColStd_HSequenceOfInteger) - IDs of found sub-shapes
512    */
513   Handle(TColStd_HSequenceOfInteger) getShapesOnBoxIDs(const Handle(GEOM_Object)& theBox,
514                                                        const Handle(GEOM_Object)& theShape,
515                                                        const Standard_Integer theShapeType,
516                                                        GEOMAlgo_State theState);
517
518   /*!
519    * \brief Find IDs of sub-shapes complying with given status about surface
520    * \param theCheckShape - the shape to check state of sub-shapes against
521    * \param theShape - the shape to explore
522    * \param theShapeType - type of sub-shape of theShape
523    * \param theState - required state
524    * \retval Handle(TColStd_HSequenceOfInteger) - IDs of found sub-shapes
525    */
526   Handle(TColStd_HSequenceOfInteger) getShapesOnShapeIDs
527                                       (const Handle(GEOM_Object)& theCheckShape,
528                                        const Handle(GEOM_Object)& theShape,
529                                        const Standard_Integer theShapeType,
530                                        GEOMAlgo_State theState);
531
532   /*!
533    * \brief Find shape objects and their entries by their ids
534    * \param theShape - the main shape
535    * \param theShapeIDs - theShapeIDs - incoming shape ids
536    * \param theShapeEntries - outgoing entries like "entry1, entry2, ..."
537    * \retval Handle(TColStd_HSequenceOfTransient) - found shape objects
538    */
539   Handle(TColStd_HSequenceOfTransient)
540     getObjectsShapesOn(const Handle(GEOM_Object)&                theShape,
541                        const Handle(TColStd_HSequenceOfInteger)& theShapeIDs,
542                        TCollection_AsciiString &                 theShapeEntries);
543
544   /*!
545    * \brief Select the object created last
546    * \param theObj1 - Object 1
547    * \param theObj2 - Object 2
548    * \retval Handle(GEOM_Object) - selected object
549    */
550   static Handle(GEOM_Object) getCreatedLast(const Handle(GEOM_Object)& theObj1,
551                                             const Handle(GEOM_Object)& theObj2);
552 };
553
554 #endif