Salome HOME
c3197a791e8712f44fef2107a3e8e01bb977d375
[modules/geom.git] / src / ShHealOper / ShHealOper_RemoveInternalWires.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:      ShHealOper_RemoveInternalWires.hxx
24 // Created:   26.04.04 11:22:26
25 // Author:    Galina KULIKOVA
26 //
27 #ifndef ShHealOper_RemoveInternalWires_HeaderFile
28 #define ShHealOper_RemoveInternalWires_HeaderFile
29
30 #include <ShHealOper_Tool.hxx>
31 #include <TopoDS_Shape.hxx>
32 #include <TopTools_SequenceOfShape.hxx>
33 #include <TopoDS_Face.hxx>
34 #include <TopoDS_Wire.hxx>
35 #include <TopTools_IndexedDataMapOfShapeListOfShape.hxx>
36
37 ///  Class ShHealOper_RemoveInternalWires
38 // Intended for removing internal wires from faces.
39
40 class ShHealOper_RemoveInternalWires : public ShHealOper_Tool
41 {
42  public:
43   // ---------- PUBLIC METHODS ----------
44
45   /// Empty constructor
46   Standard_EXPORT ShHealOper_RemoveInternalWires () {}
47
48   /// Copy constructor
49   Standard_EXPORT ShHealOper_RemoveInternalWires (const TopoDS_Shape& theShape);
50   //Method for initialization by whole shape.
51   
52   Standard_EXPORT virtual void Init(const TopoDS_Shape& theShape);
53   //Method for initialization by whole shape.
54   
55   Standard_EXPORT Standard_Boolean Remove();
56   //Removes all internal wires from all faces of the shape
57   
58   Standard_EXPORT Standard_Boolean Remove(const TopTools_SequenceOfShape& theRemovedShapes);
59   //Removes wires specified in the sequence of shapes or internal wires 
60   //belonging faces  specified in the sequence of shape.
61   
62
63  private:
64   // ---------- PRIVATE METHODS ----------
65   
66   Standard_Boolean removeWire(const TopoDS_Face& theFace, 
67                               const TopoDS_Wire& theWire);
68   void fixShape(const TopoDS_Shape& theShape );
69
70  private:
71   // ---------- PRIVATE FIELDS ----------
72   TopTools_IndexedDataMapOfShapeListOfShape myMapWiresFace;
73
74
75
76  public:
77 // Declaration of CASCADE RTTI
78 //DEFINE_STANDARD_RTTI (ShHealOper_RemoveInternalWires)
79 };
80
81 // Definition of HANDLE object using Standard_DefineHandle.hxx
82 //DEFINE_STANDARD_HANDLE (ShHealOper_RemoveInternalWires, )
83
84
85 #endif