Salome HOME
1bfc6191f100ea93587c70d32ff54e75876f33a6
[modules/shaper.git] / src / GeomAlgoImpl / GEOMAlgo_GlueDetector.hxx
1 // Copyright (C) 2007-2022  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 //=======================================================================
43 //function : GEOMAlgo_GlueDetector
44 //purpose  :
45 //=======================================================================
46 class GEOMAlgo_GlueDetector  : public GEOMAlgo_GluerAlgo,
47                                public GEOMAlgo_Algo
48 {
49 public:
50   GEOMALGOIMPL_EXPORT GEOMAlgo_GlueDetector();
51
52   GEOMALGOIMPL_EXPORT virtual ~GEOMAlgo_GlueDetector();
53
54   GEOMALGOIMPL_EXPORT virtual void Perform() ;
55
56   GEOMALGOIMPL_EXPORT const TopTools_IndexedDataMapOfShapeListOfShape& StickedShapes();
57
58 protected:
59   GEOMALGOIMPL_EXPORT void DetectVertices();
60   GEOMALGOIMPL_EXPORT void DetectEdges();
61   GEOMALGOIMPL_EXPORT void DetectFaces();
62
63   GEOMALGOIMPL_EXPORT void DetectShapes(const TopAbs_ShapeEnum aType);
64
65   GEOMALGOIMPL_EXPORT void EdgePassKey(const TopoDS_Edge& aE,
66                                        GEOMAlgo_PassKeyShape& aPK);
67
68   GEOMALGOIMPL_EXPORT void FacePassKey(const TopoDS_Face& aF,
69                                        GEOMAlgo_PassKeyShape& aPK);
70
71   GEOMALGOIMPL_EXPORT void CheckDetected();
72   //
73   GEOMALGOIMPL_EXPORT void CheckDetected(const TopTools_ListOfShape& aLVSD,
74                                          const TopTools_IndexedDataMapOfShapeListOfShape& aMVE,
75                                          const TopTools_IndexedDataMapOfShapeListOfShape& aMEV);
76
77
78  protected:
79   TopTools_IndexedDataMapOfShapeListOfShape myStickedShapes;
80 };
81
82 #endif