Salome HOME
Update copyrights
[tools/medcoupling.git] / src / INTERP_KERNEL / Geometric2D / InterpKernelGeo2DNode.hxx
1 // Copyright (C) 2007-2019  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 initHitStatus() const { _hit=0; }
59     char getHitStatus() const { return _hit; }
60     void hitMeAlone(double xBary, double yBary, double dimChar) { if(_hit==0) { _hit=1; applySimilarity(xBary,yBary,dimChar); } }
61     void unHitMeAlone(double xBary, double yBary, double dimChar) { if(_hit==0) { _hit=1; unApplySimilarity(xBary,yBary,dimChar); } }
62     void hitMeAfter(double xBary, double yBary, double dimChar) { if(_hit==0) { hitMeAlone(xBary,yBary,dimChar); _hit=2; } else if(_hit==1) declareOn(); }
63     void unHitMeAfter(double xBary, double yBary, double dimChar) { if(_hit==0) { unHitMeAlone(xBary,yBary,dimChar); _hit=2; } }
64     void initLocs() const { _loc=UNKNOWN; }
65     void setLoc(TypeOfLocInPolygon loc) const { _loc=loc; }
66     TypeOfLocInPolygon getLoc() const { return _loc; }
67     void declareIn() const { if(_loc==UNKNOWN) _loc=IN_1; }
68     void declareOn() const { if(_loc==UNKNOWN) _loc=ON_1; }
69     void declareOnLim() const { if(_loc==UNKNOWN || _loc==ON_1) _loc=ON_LIM_1; }
70     void declareOut() { if(_loc==UNKNOWN) _loc=OUT_1; }
71     void declareOnTangent() { _loc=ON_TANG_1; }
72     operator const double*() const { return _coords; }
73     bool isEqual(const Node& other) const;
74     //returns an angle in -Pi/2;Pi/2.
75     double getSlope(const Node& other) const;
76     bool isEqualAndKeepTrack(const Node& other, std::vector<Node *>& track) const;
77     void dumpInXfigFile(std::ostream& stream, int resolution, const Bounds& box) const;
78     double distanceWithSq(const Node& other) const;
79     double operator[](int i) const { return _coords[i]; }
80     //! use with caution
81     void setNewCoords(double x, double y) { _coords[0]=x; _coords[1]=y; }
82     //returns an angle in -Pi/2;Pi/2.
83     static double computeSlope(const double *pt1, const double *pt2);
84     //returns an angle in -Pi;Pi
85     static double computeAngle(const double *pt1, const double *pt2);
86     void applySimilarity(double xBary, double yBary, double dimChar);
87     void unApplySimilarity(double xBary, double yBary, double dimChar);
88     static double dot(const double *vect1, const double *vect2) { return vect1[0]*vect2[0]+vect1[1]*vect2[1]; }
89     static double sign(double val) { if(val>=0) return 1.; else return -1.; }
90     static double norm(const double *vect) { return sqrt(vect[0]*vect[0]+vect[1]*vect[1]); }
91     static bool areDoubleEquals(double a, double b) { return fabs(a-b) < QuadraticPlanarPrecision::getPrecision(); }
92     //! idem areDoubleEquals except that precision of comparison is modified.
93     static bool areDoubleEqualsWPLeft(double a, double b, double k) { return k*fabs(a-b) < QuadraticPlanarPrecision::getPrecision(); }
94     //! idem areDoubleEquals except that precision of comparison is modified.
95     static bool areDoubleEqualsWPRight(double a, double b, double k) { return fabs(a-b) < k*QuadraticPlanarPrecision::getPrecision(); }
96     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])); }
97     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]); }
98     //
99     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,
100                            std::vector<double>& addCoo, std::map<INTERP_KERNEL::Node *,int>& mapAddCoo, int *nodeId) const;
101     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,
102                             std::vector<double>& addCoo, std::map<INTERP_KERNEL::Node *,int>& mapAddCoo, std::vector<int>& pointsOther) const;
103   protected:
104     ~Node();
105   protected:
106     mutable char _hit;
107     mutable unsigned char _cnt;
108     mutable TypeOfLocInPolygon _loc;
109     double _coords[2];
110   };
111 }
112
113 #endif