Salome HOME
62b56d7fb1d2aafd62d0fba5ba33264868351548
[modules/med.git] / src / INTERP_KERNEL / Geometric2D / InterpKernelGeo2DComposedEdge.hxx
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef __INTERPKERNELGEO2DCOMPOSEDNODE_HXX__
21 #define __INTERPKERNELGEO2DCOMPOSEDNODE_HXX__
22
23 #include "INTERPKERNELDefines.hxx"
24
25 #include <set>
26 #include <list>
27 #include <vector>
28 #include <ostream>
29
30 namespace INTERP_KERNEL
31 {
32   class Node;
33   class Edge;
34   class Bounds;
35   class ElementaryEdge;
36   class IteratorOnComposedEdge;
37
38   class INTERPKERNEL_EXPORT ComposedEdge
39   {
40     friend class IteratorOnComposedEdge;
41   public:
42     ComposedEdge() { }
43     ComposedEdge(const ComposedEdge& other);
44     ComposedEdge(int sz):_sub_edges(sz) { }
45     static void Delete(ComposedEdge *pt) { delete pt; }
46     static void SoftDelete(ComposedEdge *pt) { pt->_sub_edges.clear(); delete pt; }
47     void reverse();
48     int recursiveSize() const { return (int)_sub_edges.size(); }
49     bool presenceOfOn() const;
50     bool presenceOfQuadraticEdge() const;
51     void initLocations() const;
52     ComposedEdge *clone() const;
53     bool isNodeIn(Node *n) const;
54     double getArea() const;
55     double getPerimeter() const;
56     double getHydraulicDiameter() const;
57     void getBarycenter(double *bary) const;
58     void getBarycenterGeneral(double *bary) const;
59     double normalize(ComposedEdge *other, double& xBary, double& yBary);
60     double normalizeExt(ComposedEdge *other, double& xBary, double& yBary);
61     void unApplyGlobalSimilarityExt(ComposedEdge& other, double xBary, double yBary, double fact);
62     void fillBounds(Bounds& output) const;
63     void applySimilarity(double xBary, double yBary, double dimChar);
64     void applyGlobalSimilarity(double xBary, double yBary, double dimChar);
65     void applyGlobalSimilarity2(ComposedEdge *other, double xBary, double yBary, double dimChar);
66     void dispatchPerimeter(double& partConsidered) const;
67     void dispatchPerimeterExcl(double& partConsidered, double& commonPart) const;
68     double dispatchPerimeterAdv(const ComposedEdge& father, std::vector<double>& result) const;
69     void getAllNodes(std::set<Node *>& output) const;
70     void getBarycenter(double *bary, double& weigh) const;
71     bool completed() const { return getEndNode()==getStartNode(); }
72     void setValueAt(int i, Edge *e, bool direction=true);
73     double getCommonLengthWith(const ComposedEdge& other) const;
74     void clear();
75     bool empty() const { return _sub_edges.empty(); }
76     ElementaryEdge *front() const { return _sub_edges.front(); }
77     ElementaryEdge *back() const { return _sub_edges.back(); }
78     void resize(int i) { _sub_edges.resize(i); }
79     void pushBack(Edge *edge, bool direction=true);
80     void pushBack(ElementaryEdge *elem);
81     void pushBack(ComposedEdge *elem);
82     int size() const { return (int)_sub_edges.size(); }
83     ElementaryEdge *operator[](int i) const;
84     Node *getEndNode() const;
85     Node *getStartNode() const;
86     bool changeEndNodeWith(Node *node) const;
87     bool changeStartNodeWith(Node *node) const;
88     void dumpInXfigFile(std::ostream& stream, int resolution, const Bounds& box) const;
89     bool isInOrOut(Node *nodeToTest) const;
90     bool getDirection() const;
91     bool intresincEqCoarse(const Edge *other) const;
92   private:
93     std::list<ElementaryEdge *>* getListBehind() { return &_sub_edges; }
94   protected:
95     ~ComposedEdge();
96   private:
97     void clearAll(std::list<ElementaryEdge *>::iterator startToDel);
98   protected:
99     std::list<ElementaryEdge *> _sub_edges;
100   };
101 }
102
103 #endif