1 // Copyright (C) 2005 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License.
9 // This library is distributed in the hope that it will be useful
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 // Lesser General Public License for more details.
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 // File: ShHealOper_RemoveInternalWires.hxx
22 // Created: 26.04.04 11:22:26
23 // Author: Galina KULIKOVA
26 #ifndef ShHealOper_RemoveInternalWires_HeaderFile
27 #define ShHealOper_RemoveInternalWires_HeaderFile
29 #include <MMgt_TShared.hxx>
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>
37 /// Class ShHealOper_RemoveInternalWires
38 // Intended for removing internal wires from faces.
40 class ShHealOper_RemoveInternalWires : public ShHealOper_Tool
43 // ---------- PUBLIC METHODS ----------
46 Standard_EXPORT ShHealOper_RemoveInternalWires () {}
49 Standard_EXPORT ShHealOper_RemoveInternalWires (const TopoDS_Shape& theShape);
50 //Method for initalization by whole shape.
52 Standard_EXPORT virtual void Init(const TopoDS_Shape& theShape);
53 //Method for initalization by whole shape.
55 Standard_EXPORT Standard_Boolean Remove();
56 //Removes all internal wires from all faces of the shape
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.
64 // ---------- PRIVATE METHODS ----------
66 Standard_Boolean removeWire(const TopoDS_Face& theFace,
67 const TopoDS_Wire& theWire);
68 void fixShape(const TopoDS_Shape& theShape );
71 // ---------- PRIVATE FIELDS ----------
72 TopTools_IndexedDataMapOfShapeListOfShape myMapWiresFace;
77 // Declaration of CASCADE RTTI
78 //DEFINE_STANDARD_RTTI (ShHealOper_RemoveInternalWires)
81 // Definition of HANDLE object using Standard_DefineHandle.hxx
82 //DEFINE_STANDARD_HANDLE (ShHealOper_RemoveInternalWires, )