Salome HOME
c09d779bdb03dc3fb4fc165beeee02c5c8ed1a29
[modules/geom.git] / src / ShHealOper / ShHealOper_EdgeDivide.hxx
1 //  Copyright (C) 2007-2008  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:      ShHealOper_EdgeDivide.hxx
23 // Created:   30.04.04 16:06:25
24 // Author:    Galina KULIKOVA
25 //
26 #ifndef ShHealOper_EdgeDivide_HeaderFile
27 #define ShHealOper_EdgeDivide_HeaderFile
28
29 #include <TColStd_HSequenceOfReal.hxx>
30 #include <TopTools_IndexedDataMapOfShapeListOfShape.hxx>
31 #include <TopoDS_Edge.hxx>
32 #include <TopoDS_Shape.hxx>
33 #include <ShHealOper_Tool.hxx>
34 #include <TColStd_SequenceOfReal.hxx>
35
36 ///  Class ShHealOper_EdgeDivide
37 //Intended for spitting edge in accordance to the specified mode and value.
38
39 class ShHealOper_EdgeDivide : public ShHealOper_Tool
40 {
41  public:
42   // ---------- PUBLIC METHODS ----------
43
44   
45   Standard_EXPORT ShHealOper_EdgeDivide () : ShHealOper_Tool() {}
46   /// Empty constructor
47  
48   Standard_EXPORT ShHealOper_EdgeDivide (const TopoDS_Shape& theShape);
49    /// Constructor initializes by shape.
50
51   Standard_EXPORT virtual void Init(const TopoDS_Shape& theShape);
52   //Method for initalization by whole shape.
53
54   Standard_EXPORT Standard_Boolean Perform(const TopoDS_Shape& theEdge, 
55                                            const Standard_Real theValue,
56                                            const Standard_Boolean theDivideParamMode = Standard_True);
57   //Performs spitting of the specified edge in the accoradnce to
58   //specified mode and value.
59   //If theDivideParamMode is equal to true edge will be splitted by parameter.
60   //Else edge will be spliited by length (default true).
61   //theValue is koefficient for splitting from 0 to 1.
62
63   Standard_EXPORT Standard_Boolean Perform(const TopoDS_Shape& theEdge, 
64                                            const TColStd_SequenceOfReal& theValues,
65                                            const Standard_Boolean theDivideParamMode = Standard_True);
66   //Performs spitting of the specified edge in the accoradnce to
67   //specified mode and sequence of values the same way as previous.
68
69  protected:
70   // ---------- PROTECTED METHODS ----------
71
72
73   Standard_Boolean build(const Handle(TColStd_HSequenceOfReal)& theValues);
74   
75   Standard_Boolean computeValues(const Handle(TColStd_HSequenceOfReal)& theValues,
76                                  Standard_Boolean& theHas3d,
77                                  Standard_Boolean& theHas2d,
78                                  Standard_Boolean& hasPCurves);
79
80  private:
81   // ---------- PRIVATE FIELDS ----------
82
83   TopTools_IndexedDataMapOfShapeListOfShape myMapEdgesFace;
84   Standard_Boolean myDivideParamMode;
85   TopoDS_Edge myEdge;
86
87  public:
88 // Declaration of CASCADE RTTI
89 //DEFINE_STANDARD_RTTI (ShHealOper_EdgeDivide)
90 };
91
92 // Definition of HANDLE object using Standard_DefineHandle.hxx
93 //DEFINE_STANDARD_HANDLE (ShHealOper_EdgeDivide, )
94
95
96 #endif