Salome HOME
Fix for the "0021179: EDF 1654 SMESH GEOM: better look'n'feel" issue:
[modules/geom.git] / src / GEOMAlgo_NEW / GEOMAlgo_WireSplitter.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 // File:        GEOMAlgo_WireSplitter.hxx
24 // Author:      Peter KURNEV
25
26 #ifndef _GEOMAlgo_WireSplitter_HeaderFile
27 #define _GEOMAlgo_WireSplitter_HeaderFile
28
29 #include <Standard.hxx>
30 #include <Standard_Macro.hxx>
31 #include <TopoDS_Face.hxx>
32 #include <Standard_Boolean.hxx>
33 #include <BOPTColStd_ListOfListOfShape.hxx>
34 #include <BOP_IndexedDataMapOfVertexListEdgeInfo.hxx>
35 #include <TopTools_ListOfShape.hxx>
36 #include <GEOMAlgo_Algo.hxx>
37
38 //!  the algorithm to split multiconnexed set of edges <br>
39 //!  wires on a face onto simple connexed wires <br>
40 //!  . <br>
41 //=======================================================================
42 //class    : GEOMAlgo_WireSplitter
43 //purpose  :
44 //=======================================================================
45 class GEOMAlgo_WireSplitter  : public GEOMAlgo_Algo
46 {
47 public:
48   Standard_EXPORT
49     GEOMAlgo_WireSplitter();
50
51   Standard_EXPORT
52     virtual ~GEOMAlgo_WireSplitter();
53
54   Standard_EXPORT
55     void SetFace(const TopoDS_Face& aF) ;
56
57   Standard_EXPORT
58     void SetEdges(const TopTools_ListOfShape& aLE) ;
59
60   Standard_EXPORT
61     const TopTools_ListOfShape& Edges() const;
62
63   Standard_EXPORT
64     virtual  void Perform() ;
65
66   Standard_EXPORT
67     Standard_Boolean IsNothingToDo() const;
68
69   Standard_EXPORT
70     const TopoDS_Face& Face() const;
71
72   Standard_EXPORT
73     const BOPTColStd_ListOfListOfShape& Shapes() const;
74
75 protected:
76   TopoDS_Face myFace;
77   Standard_Boolean myIsDone;
78   Standard_Boolean myNothingToDo;
79   BOPTColStd_ListOfListOfShape myShapes;
80   BOP_IndexedDataMapOfVertexListEdgeInfo mySmartMap;
81   TopTools_ListOfShape myEdges;
82 };
83
84 #endif