Salome HOME
addition of MEDCouplingUMesh::conformize2D to conformize a 2D mesh
[tools/medcoupling.git] / src / INTERP_KERNEL / Geometric2D / InterpKernelGeo2DNode.hxx
1 // Copyright (C) 2007-2014  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, or (at your option) any later version.
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 // Author : Anthony Geay (CEA/DEN)
20
21 #ifndef __INTERPKERNELGEO2DNODE_HXX__
22 #define __INTERPKERNELGEO2DNODE_HXX__
23
24 #include "InterpKernelGeo2DPrecision.hxx"
25 #include "INTERPKERNELDefines.hxx"
26
27 #include <map>
28 #include <cmath>
29 #include <vector>
30 #include <iostream>
31
32 namespace INTERP_KERNEL
33 {
34   typedef enum
35     {
36       IN_1      =  7,
37       ON_1      =  8,
38       ON_LIM_1  = 12,
39       ON_TANG_1 =  9,
40       OUT_1     = 10,
41       UNKNOWN   = 11
42     } TypeOfLocInPolygon;
43
44   class Bounds;
45   
46   /*!
47    * Representation of a 2D point, and potentially its location relative to a polygon.
48    * As nodes can be shared between edges it is handled with ref counting.
49    */
50   class INTERPKERNEL_EXPORT Node
51   {
52   public:
53     Node(double x, double y);
54     Node(const double *coords);
55     Node(std::istream& stream);
56     void incrRef() const { _cnt++; }
57     bool decrRef();
58     void initLocs() const { _loc=UNKNOWN; }
59     void setLoc(TypeOfLocInPolygon loc) const { _loc=loc; }
60     TypeOfLocInPolygon getLoc() const { return _loc; }
61     void declareIn() const { if(_loc==UNKNOWN) _loc=IN_1; }
62     void declareOn() const { if(_loc==UNKNOWN) _loc=ON_1; }
63     void declareOnLim() const { if(_loc==UNKNOWN || _loc==ON_1) _loc=ON_LIM_1; }
64     void declareOut() { if(_loc==UNKNOWN) _loc=OUT_1; }
65     void declareOnTangent() { _loc=ON_TANG_1; }
66     operator const double*() const { return _coords; }
67     bool isEqual(const Node& other) const;
68     //returns an angle in -Pi/2;Pi/2.
69     double getSlope(const Node& other) const;
70     bool isEqualAndKeepTrack(const Node& other, std::vector<Node *>& track) const;
71     void dumpInXfigFile(std::ostream& stream, int resolution, const Bounds& box) const;
72     double distanceWithSq(const Node& other) const;
73     double operator[](int i) const { return _coords[i]; }
74     //! use with caution
75     void setNewCoords(double x, double y) { _coords[0]=x; _coords[1]=y; }
76     //returns an angle in -Pi/2;Pi/2.
77     static double computeSlope(const double *pt1, const double *pt2);
78     //returns an angle in -Pi;Pi
79     static double computeAngle(const double *pt1, const double *pt2);
80     void applySimilarity(double xBary, double yBary, double dimChar);
81     void unApplySimilarity(double xBary, double yBary, double dimChar);
82     static double dot(const double *vect1, const double *vect2) { return vect1[0]*vect2[0]+vect1[1]*vect2[1]; }
83     static double sign(double val) { if(val>=0) return 1.; else return -1.; }
84     static double norm(const double *vect) { return sqrt(vect[0]*vect[0]+vect[1]*vect[1]); }
85     static bool areDoubleEquals(double a, double b) { return fabs(a-b) < QUADRATIC_PLANAR::_precision; }
86     //! idem areDoubleEquals except that precision of comparison is modified.
87     static bool areDoubleEqualsWP(double a, double b, double k) { return fabs(a-b) < k*QUADRATIC_PLANAR::_precision; }
88     static double distanceBtw2Pt(const double *a, const double *b) { return sqrt((a[0]-b[0])*(a[0]-b[0])+(a[1]-b[1])*(a[1]-b[1])); }
89     static double distanceBtw2PtSq(const double *a, const double *b) { return (a[0]-b[0])*(a[0]-b[0])+(a[1]-b[1])*(a[1]-b[1]); }
90     //
91     void fillGlobalInfoAbs(const std::map<INTERP_KERNEL::Node *,int>& mapThis, const std::map<INTERP_KERNEL::Node *,int>& mapOther, int offset1, int offset2, double fact, double baryX, double baryY,
92                            std::vector<double>& addCoo, std::map<INTERP_KERNEL::Node *,int>& mapAddCoo, int *nodeId) const;
93     void fillGlobalInfoAbs2(const std::map<INTERP_KERNEL::Node *,int>& mapThis, const std::map<INTERP_KERNEL::Node *,int>& mapOther, int offset1, int offset2, double fact, double baryX, double baryY,
94                             std::vector<double>& addCoo, std::map<INTERP_KERNEL::Node *,int>& mapAddCoo, std::vector<int>& pointsOther) const;
95   protected:
96     ~Node();
97   protected:
98     mutable unsigned char _cnt;
99     mutable TypeOfLocInPolygon _loc;
100     double _coords[2];
101   };
102 }
103
104 #endif