Salome HOME
9878666dd64d57abbae5c6ffb33a7e02ffa892d3
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_GlueDetector.hxx
1 // Copyright (C) 2007-2023  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, or (at your option) any later version.
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 // File:        GEOMAlgo_GlueDetector.hxx
24 // Author:      Peter KURNEV
25
26 #ifndef _GEOMAlgo_GlueDetector_HeaderFile
27 #define _GEOMAlgo_GlueDetector_HeaderFile
28
29 #include <Standard.hxx>
30 #include <Standard_Macro.hxx>
31
32 #include <TopAbs_ShapeEnum.hxx>
33
34 #include <TopTools_ListOfShape.hxx>
35 #include <TopTools_IndexedDataMapOfShapeListOfShape.hxx>
36
37 #include <GEOMAlgo_GluerAlgo.hxx>
38 #include <GEOMAlgo_Algo.hxx>
39 #include <GEOMAlgo_PassKeyShape.hxx>
40
41 //=======================================================================
42 //function : GEOMAlgo_GlueDetector
43 //purpose  :
44 //=======================================================================
45 class GEOMAlgo_GlueDetector  : public GEOMAlgo_GluerAlgo,
46                                public GEOMAlgo_Algo
47 {
48 public:
49   Standard_EXPORT
50     GEOMAlgo_GlueDetector();
51
52   Standard_EXPORT virtual
53     ~GEOMAlgo_GlueDetector();
54
55   Standard_EXPORT virtual
56     void Perform() ;
57
58   Standard_EXPORT
59     const TopTools_IndexedDataMapOfShapeListOfShape& StickedShapes();
60
61 protected:
62   Standard_EXPORT
63     void DetectVertices() ;
64
65   Standard_EXPORT
66     void DetectEdges() ;
67
68   Standard_EXPORT
69     void DetectFaces() ;
70
71   Standard_EXPORT
72     void DetectShapes(const TopAbs_ShapeEnum aType) ;
73
74   Standard_EXPORT
75     void EdgePassKey(const TopoDS_Edge& aE,
76                      GEOMAlgo_PassKeyShape& aPK) ;
77
78   Standard_EXPORT
79     void FacePassKey(const TopoDS_Face& aF,
80                      GEOMAlgo_PassKeyShape& aPK) ;
81
82   Standard_EXPORT
83     void CheckDetected();
84   //
85   Standard_EXPORT
86     void CheckDetected
87       (const TopTools_ListOfShape& aLVSD,
88        const TopTools_IndexedDataMapOfShapeListOfShape& aMVE,
89        const TopTools_IndexedDataMapOfShapeListOfShape& aMEV);
90
91
92  protected:
93   TopTools_IndexedDataMapOfShapeListOfShape myStickedShapes;
94
95 };
96 #endif