]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOMAlgo_NEW/GEOMAlgo_GlueDetector.hxx
Salome HOME
Mantis issue 0021191: GlueEdges and GlueFaces problem with tolerance 1. A fix by...
[modules/geom.git] / src / GEOMAlgo_NEW / GEOMAlgo_GlueDetector.hxx
1 // Copyright (C) 2007-2011  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21
22 // File:        GEOMAlgo_GlueDetector.hxx
23 // Author:      Peter KURNEV
24
25 #ifndef _GEOMAlgo_GlueDetector_HeaderFile
26 #define _GEOMAlgo_GlueDetector_HeaderFile
27
28 #include <Standard.hxx>
29 #include <Standard_Macro.hxx>
30
31 #include <TopAbs_ShapeEnum.hxx>
32
33 #include <TopTools_ListOfShape.hxx>
34 #include <TopTools_IndexedDataMapOfShapeListOfShape.hxx>
35
36 #include <GEOMAlgo_GluerAlgo.hxx>
37 #include <GEOMAlgo_Algo.hxx>
38 #include <GEOMAlgo_PassKeyShape.hxx>
39
40 //=======================================================================
41 //function : GEOMAlgo_GlueDetector
42 //purpose  :
43 //=======================================================================
44 class GEOMAlgo_GlueDetector  : public GEOMAlgo_GluerAlgo,
45                                public GEOMAlgo_Algo
46 {
47 public:
48   Standard_EXPORT
49     GEOMAlgo_GlueDetector();
50
51   Standard_EXPORT virtual
52     ~GEOMAlgo_GlueDetector();
53
54   Standard_EXPORT virtual
55     void Perform() ;
56
57 //modified by NIZNHY-PKV Tue Mar 13 12:23:20 2012f
58   Standard_EXPORT
59     const TopTools_IndexedDataMapOfShapeListOfShape& StickedShapes();
60 //modified by NIZNHY-PKV Tue Mar 13 12:23:26 2012t
61 //------------------------------------------------
62 protected:
63   Standard_EXPORT
64     void DetectVertices() ;
65
66   Standard_EXPORT
67     void DetectEdges() ;
68
69   Standard_EXPORT
70     void DetectFaces() ;
71
72   Standard_EXPORT
73     void DetectShapes(const TopAbs_ShapeEnum aType) ;
74
75   Standard_EXPORT
76     void EdgePassKey(const TopoDS_Edge& aE,
77                      GEOMAlgo_PassKeyShape& aPK) ;
78
79   Standard_EXPORT
80     void FacePassKey(const TopoDS_Face& aF,
81                      GEOMAlgo_PassKeyShape& aPK) ;
82
83   //modified by NIZNHY-PKV Tue Mar 13 09:53:03 2012f
84   Standard_EXPORT
85     void CheckDetected();
86   //
87   Standard_EXPORT
88     void CheckDetected
89       (const TopTools_ListOfShape& aLVSD,
90        const TopTools_IndexedDataMapOfShapeListOfShape& aMVE,
91        const TopTools_IndexedDataMapOfShapeListOfShape& aMEV);
92
93
94  protected:
95   TopTools_IndexedDataMapOfShapeListOfShape myStickedShapes;
96   //modified by NIZNHY-PKV Tue Mar 13 09:53:08 2012t
97
98 };
99 #endif