Geant4 Cross Reference

Cross-Referencing   Geant4
Geant4/externals/g4tools/include/tools/clist_contour

Version: [ ReleaseNotes ] [ 1.0 ] [ 1.1 ] [ 2.0 ] [ 3.0 ] [ 3.1 ] [ 3.2 ] [ 4.0 ] [ 4.0.p1 ] [ 4.0.p2 ] [ 4.1 ] [ 4.1.p1 ] [ 5.0 ] [ 5.0.p1 ] [ 5.1 ] [ 5.1.p1 ] [ 5.2 ] [ 5.2.p1 ] [ 5.2.p2 ] [ 6.0 ] [ 6.0.p1 ] [ 6.1 ] [ 6.2 ] [ 6.2.p1 ] [ 6.2.p2 ] [ 7.0 ] [ 7.0.p1 ] [ 7.1 ] [ 7.1.p1 ] [ 8.0 ] [ 8.0.p1 ] [ 8.1 ] [ 8.1.p1 ] [ 8.1.p2 ] [ 8.2 ] [ 8.2.p1 ] [ 8.3 ] [ 8.3.p1 ] [ 8.3.p2 ] [ 9.0 ] [ 9.0.p1 ] [ 9.0.p2 ] [ 9.1 ] [ 9.1.p1 ] [ 9.1.p2 ] [ 9.1.p3 ] [ 9.2 ] [ 9.2.p1 ] [ 9.2.p2 ] [ 9.2.p3 ] [ 9.2.p4 ] [ 9.3 ] [ 9.3.p1 ] [ 9.3.p2 ] [ 9.4 ] [ 9.4.p1 ] [ 9.4.p2 ] [ 9.4.p3 ] [ 9.4.p4 ] [ 9.5 ] [ 9.5.p1 ] [ 9.5.p2 ] [ 9.6 ] [ 9.6.p1 ] [ 9.6.p2 ] [ 9.6.p3 ] [ 9.6.p4 ] [ 10.0 ] [ 10.0.p1 ] [ 10.0.p2 ] [ 10.0.p3 ] [ 10.0.p4 ] [ 10.1 ] [ 10.1.p1 ] [ 10.1.p2 ] [ 10.1.p3 ] [ 10.2 ] [ 10.2.p1 ] [ 10.2.p2 ] [ 10.2.p3 ] [ 10.3 ] [ 10.3.p1 ] [ 10.3.p2 ] [ 10.3.p3 ] [ 10.4 ] [ 10.4.p1 ] [ 10.4.p2 ] [ 10.4.p3 ] [ 10.5 ] [ 10.5.p1 ] [ 10.6 ] [ 10.6.p1 ] [ 10.6.p2 ] [ 10.6.p3 ] [ 10.7 ] [ 10.7.p1 ] [ 10.7.p2 ] [ 10.7.p3 ] [ 10.7.p4 ] [ 11.0 ] [ 11.0.p1 ] [ 11.0.p2 ] [ 11.0.p3, ] [ 11.0.p4 ] [ 11.1 ] [ 11.1.1 ] [ 11.1.2 ] [ 11.1.3 ] [ 11.2 ] [ 11.2.1 ] [ 11.2.2 ] [ 11.3.0 ]

Diff markup

Differences between /externals/g4tools/include/tools/clist_contour (Version 11.3.0) and /externals/g4tools/include/tools/clist_contour (Version 11.2.1)


  1 // Copyright (C) 2010, Guy Barrand. All rights      1 // Copyright (C) 2010, Guy Barrand. All rights reserved.
  2 // See the file tools.license for terms.            2 // See the file tools.license for terms.
  3                                                     3 
  4 #ifndef tools_clist_contour                         4 #ifndef tools_clist_contour
  5 #define tools_clist_contour                         5 #define tools_clist_contour
  6                                                     6 
  7 // G.Barrand : inline version of the one found      7 // G.Barrand : inline version of the one found in Lib of OSC 16.11.
  8 //             This code is not mine and I kee      8 //             This code is not mine and I keep it "as it is".
  9                                                     9 
 10 // Inheritance :                                   10 // Inheritance :
 11 #include "ccontour"                                11 #include "ccontour"
 12                                                    12 
 13 #include <list>                                    13 #include <list>
 14 #include <ostream>                                 14 #include <ostream>
 15 #include <iomanip> //std::setprecision             15 #include <iomanip> //std::setprecision
 16                                                    16 
 17 namespace tools {                                  17 namespace tools {
 18                                                    18 
 19 // a list of point index referring to the seco     19 // a list of point index referring to the secondary grid
 20 // Let i the index of a point,                     20 // Let i the index of a point,
 21 typedef std::list<unsigned int> cline_strip;       21 typedef std::list<unsigned int> cline_strip;
 22 typedef std::list<cline_strip*> cline_strip_li     22 typedef std::list<cline_strip*> cline_strip_list;
 23 typedef std::vector<cline_strip_list> cline_st     23 typedef std::vector<cline_strip_list> cline_strip_list_vector;
 24                                                    24 
 25 class clist_contour : public ccontour              25 class clist_contour : public ccontour
 26 {                                                  26 {
 27 public: //ccontour                                 27 public: //ccontour
 28   // Adding segment to line strips                 28   // Adding segment to line strips
 29   // See ccontour::ExportLine for further deta     29   // See ccontour::ExportLine for further details
 30   virtual void ExportLine(int iPlane,int x1, i     30   virtual void ExportLine(int iPlane,int x1, int y1, int x2, int y2);
 31                                                    31 
 32 public:                                            32 public:
 33   clist_contour();                                 33   clist_contour();
 34   virtual ~clist_contour(){CleanMemory();}         34   virtual ~clist_contour(){CleanMemory();}
 35 protected: //G.Barrand                             35 protected: //G.Barrand
 36         clist_contour(const clist_contour& a_f     36         clist_contour(const clist_contour& a_from):ccontour(a_from){}
 37 private: //G.Barrand                               37 private: //G.Barrand
 38         clist_contour& operator=(const clist_c     38         clist_contour& operator=(const clist_contour&){return *this;}
 39 public:                                            39 public:
 40   // retreiving list of line strip for the i-t     40   // retreiving list of line strip for the i-th contour
 41   cline_strip_list* get_lines(unsigned int iPl     41   cline_strip_list* get_lines(unsigned int iPlane);
 42   // Basic algorithm to concatanate line strip     42   // Basic algorithm to concatanate line strip. Not optimized at all !
 43   bool compact_strips ();                          43   bool compact_strips ();
 44   // generate contour strips                       44   // generate contour strips
 45   virtual void generate();                         45   virtual void generate();
 46 protected: //G.Barrand                             46 protected: //G.Barrand
 47                                                    47 
 48   // Initializing memory                           48   // Initializing memory
 49   virtual void InitMemory();                       49   virtual void InitMemory();
 50   // Cleaning memory and line strips               50   // Cleaning memory and line strips
 51   virtual void CleanMemory();                      51   virtual void CleanMemory();
 52                                                    52 
 53   // Adding segment to line strips                 53   // Adding segment to line strips
 54   // See ccontour::ExportLine for further deta     54   // See ccontour::ExportLine for further details
 55   //void ExportLine(int iPlane,int x1, int y1,     55   //void ExportLine(int iPlane,int x1, int y1, int x2, int y2);
 56                                                    56 
 57   /// debuggin                                     57   /// debuggin
 58   void DumpPlane(unsigned int iPlane) const;       58   void DumpPlane(unsigned int iPlane) const;
 59                                                    59 
 60   // Area given by this function can be positi     60   // Area given by this function can be positive or negative depending on the winding direction of the contour.
 61   double Area(cline_strip* Line);                  61   double Area(cline_strip* Line);
 62                                                    62 
 63   double EdgeWeight(cline_strip* pLine, double     63   double EdgeWeight(cline_strip* pLine, double R);
 64   //bool   PrintContour(std::ostream& a_out);      64   //bool   PrintContour(std::ostream& a_out);
 65 protected:                                         65 protected:
 66   // Merges pStrip1 with pStrip2 if they have      66   // Merges pStrip1 with pStrip2 if they have a common end point
 67   bool MergeStrips(cline_strip* pStrip1, cline     67   bool MergeStrips(cline_strip* pStrip1, cline_strip* pStrip2);
 68   // Merges the two strips with a welding thre     68   // Merges the two strips with a welding threshold.
 69   bool ForceMerge(cline_strip* pStrip1, cline_     69   bool ForceMerge(cline_strip* pStrip1, cline_strip* pStrip2,double);
 70   // returns true if contour is touching bound     70   // returns true if contour is touching boundary
 71   bool OnBoundary(cline_strip* pStrip);            71   bool OnBoundary(cline_strip* pStrip);
 72         // L.Garnier : check specials case for     72         // L.Garnier : check specials case for CompactStrip
 73         bool SpecialCompactStripCase(double,do     73         bool SpecialCompactStripCase(double,double,double,double,double);
 74                                                    74 
 75 private:                                           75 private:
 76   // array of line strips                          76   // array of line strips
 77   cline_strip_list_vector m_vStripLists;           77   cline_strip_list_vector m_vStripLists;
 78         typedef unsigned int UINT;                 78         typedef unsigned int UINT;
 79                                                    79 
 80 private:                                           80 private:
 81         static const char* _TT(const char* wha     81         static const char* _TT(const char* what) {return what;}
 82                                                    82 
 83         static void _TRACE_(const char* /*a_fm     83         static void _TRACE_(const char* /*a_fmt*/,...) {
 84           //va_list args;                          84           //va_list args;
 85           //va_start(args,a_fmt);                  85           //va_start(args,a_fmt);
 86           //::vprintf(s,a_fmt,args);               86           //::vprintf(s,a_fmt,args);
 87           //va_end(args);                          87           //va_end(args);
 88         }                                          88         }
 89         static void _PROBLEM_(const char* what     89         static void _PROBLEM_(const char* what) {::printf("%s",what);}
 90                                                    90 
 91   static bool _ASSERT_RET_(bool what,const cha     91   static bool _ASSERT_RET_(bool what,const char* cmt) {
 92           if(!(what)) {                            92           if(!(what)) {
 93             ::printf("debug : ListContour : as     93             ::printf("debug : ListContour : assert failure in %s\n",cmt);
 94             return false;                          94             return false;
 95           }                                        95           }
 96           return true;                             96           return true;
 97   }                                                97   }
 98                                                    98 
 99   static bool _ASSERT_MERGE_RET_(bool what,con     99   static bool _ASSERT_MERGE_RET_(bool what,const char* cmt,cline_strip* pStrip2) {
100           if(!(what)) {                           100           if(!(what)) {
101             ::printf("debug : ListContour : as    101             ::printf("debug : ListContour : assert failure in %s\n",cmt);
102             pStrip2->clear();                     102             pStrip2->clear();
103             return false;                         103             return false;
104           }                                       104           }
105           return true;                            105           return true;
106         }                                         106         }
107 };                                                107 };
108                                                   108 
109                                                   109 
110 // implementation :                               110 // implementation :
111 inline clist_contour::clist_contour()             111 inline clist_contour::clist_contour()
112 : ccontour()                                      112 : ccontour()
113 {                                                 113 {
114 }                                                 114 }
115                                                   115 
116 inline void clist_contour::generate()             116 inline void clist_contour::generate()
117 {                                                 117 {
118   // generate line strips                         118   // generate line strips
119   ccontour::generate();                           119   ccontour::generate();
120   // compact strips                               120   // compact strips
121   compact_strips ();                              121   compact_strips ();
122 }                                                 122 }
123                                                   123 
124 inline void clist_contour::InitMemory()           124 inline void clist_contour::InitMemory()
125 {                                                 125 {
126   ccontour::InitMemory();                         126   ccontour::InitMemory();
127                                                   127 
128   cline_strip_list::iterator pos;                 128   cline_strip_list::iterator pos;
129   cline_strip* pStrip;                            129   cline_strip* pStrip;
130                                                   130 
131   if (!m_vStripLists.empty())                     131   if (!m_vStripLists.empty())
132   {                                               132   {
133     UINT i;                                       133     UINT i;
134     // reseting lists                             134     // reseting lists
135     _ASSERT_(m_vStripLists.size() == get_numbe    135     _ASSERT_(m_vStripLists.size() == get_number_of_planes(),"clist_contour::InitMemory::0");
136     for (i=0;i<get_number_of_planes();i++)        136     for (i=0;i<get_number_of_planes();i++)
137     {                                             137     {
138       for (pos = m_vStripLists[i].begin(); pos    138       for (pos = m_vStripLists[i].begin(); pos!=m_vStripLists[i].end() ; pos++)
139       {                                           139       {
140         pStrip=(*pos);                            140         pStrip=(*pos);
141         _ASSERTP_(pStrip,"clist_contour::InitM    141         _ASSERTP_(pStrip,"clist_contour::InitMemory::1");
142                                                   142 
143         pStrip->clear();                          143         pStrip->clear();
144         delete pStrip;                            144         delete pStrip;
145       }                                           145       }
146       m_vStripLists[i].clear();                   146       m_vStripLists[i].clear();
147     }                                             147     }
148   }                                               148   }
149   else                                            149   else
150     m_vStripLists.resize(get_number_of_planes(    150     m_vStripLists.resize(get_number_of_planes());
151 }                                                 151 }
152                                                   152 
153 inline void clist_contour::CleanMemory()          153 inline void clist_contour::CleanMemory()
154 {                                                 154 {
155   ccontour::CleanMemory();                        155   ccontour::CleanMemory();
156                                                   156 
157   cline_strip_list::iterator pos;                 157   cline_strip_list::iterator pos;
158   cline_strip* pStrip;                            158   cline_strip* pStrip;
159   UINT i;                                         159   UINT i;
160                                                   160 
161   // reseting lists                               161   // reseting lists
162   for (i=0;i<m_vStripLists.size();i++) //G.Bar    162   for (i=0;i<m_vStripLists.size();i++) //G.Barrand
163   {                                               163   {
164     for (pos=m_vStripLists[i].begin(); pos!=m_    164     for (pos=m_vStripLists[i].begin(); pos!=m_vStripLists[i].end();pos++)
165     {                                             165     {
166       pStrip=(*pos);                              166       pStrip=(*pos);
167       _ASSERTP_(pStrip,"clist_contour::CleanMe    167       _ASSERTP_(pStrip,"clist_contour::CleanMemory");
168       pStrip->clear();                            168       pStrip->clear();
169       delete pStrip;                              169       delete pStrip;
170     }                                             170     }
171     m_vStripLists[i].clear();                     171     m_vStripLists[i].clear();
172   }                                               172   }
173 }                                                 173 }
174                                                   174 
175 inline void clist_contour::ExportLine(int iPla    175 inline void clist_contour::ExportLine(int iPlane,int x1, int y1, int x2, int y2)
176 {                                                 176 {
177   _ASSERT_(iPlane>=0,"clist_contour::ExportLin    177   _ASSERT_(iPlane>=0,"clist_contour::ExportLine::0");
178   _ASSERT_(iPlane<(int)get_number_of_planes(),    178   _ASSERT_(iPlane<(int)get_number_of_planes(),"clist_contour::ExportLine::1");
179                                                   179 
180   // check that the two points are not at the     180   // check that the two points are not at the beginning or end of the  some line strip
181   UINT i1=y1*(m_iColSec+1)+x1;                    181   UINT i1=y1*(m_iColSec+1)+x1;
182   UINT i2=y2*(m_iColSec+1)+x2;                    182   UINT i2=y2*(m_iColSec+1)+x2;
183                                                   183 
184   cline_strip* pStrip;                            184   cline_strip* pStrip;
185                                                   185 
186   cline_strip_list::iterator pos;                 186   cline_strip_list::iterator pos;
187   bool added = false;                             187   bool added = false;
188   for(pos=m_vStripLists[iPlane].begin(); pos!=    188   for(pos=m_vStripLists[iPlane].begin(); pos!=m_vStripLists[iPlane].end() && !added; pos++)
189   {                                               189   {
190     pStrip=(*pos);                                190     pStrip=(*pos);
191     _ASSERTP_(pStrip,"clist_contour::ExportLin    191     _ASSERTP_(pStrip,"clist_contour::ExportLine::2");
192     // check if points are appendable to this     192     // check if points are appendable to this strip
193     if (i1==pStrip->front())                      193     if (i1==pStrip->front())
194     {                                             194     {
195       pStrip->insert(pStrip->begin(),i2);         195       pStrip->insert(pStrip->begin(),i2);
196       return;                                     196       return;
197     }                                             197     }
198     if (i1==pStrip->back())                       198     if (i1==pStrip->back())
199     {                                             199     {
200       pStrip->insert(pStrip->end(),i2);           200       pStrip->insert(pStrip->end(),i2);
201       return;                                     201       return;
202     }                                             202     }
203     if (i2==pStrip->front())                      203     if (i2==pStrip->front())
204     {                                             204     {
205       pStrip->insert(pStrip->begin(),i1);         205       pStrip->insert(pStrip->begin(),i1);
206       return;                                     206       return;
207     }                                             207     }
208     if (i2==pStrip->back())                       208     if (i2==pStrip->back())
209     {                                             209     {
210       pStrip->insert(pStrip->end(),i1);           210       pStrip->insert(pStrip->end(),i1);
211       return;                                     211       return;
212     }                                             212     }
213   }                                               213   }
214                                                   214 
215   // segment was not part of any line strip, c    215   // segment was not part of any line strip, creating new one
216   pStrip=new cline_strip;                         216   pStrip=new cline_strip;
217   pStrip->insert(pStrip->begin(),i1);             217   pStrip->insert(pStrip->begin(),i1);
218   pStrip->insert(pStrip->end(),i2);               218   pStrip->insert(pStrip->end(),i2);
219   m_vStripLists[iPlane].insert(m_vStripLists[i    219   m_vStripLists[iPlane].insert(m_vStripLists[iPlane].begin(),pStrip);
220 }                                                 220 }
221                                                   221 
222 inline bool clist_contour::ForceMerge(cline_st    222 inline bool clist_contour::ForceMerge(cline_strip* pStrip1, cline_strip* pStrip2,double aHeight)
223 {                                                 223 {
224                                                   224 
225   cline_strip::iterator pos;                      225   cline_strip::iterator pos;
226   cline_strip::reverse_iterator rpos;             226   cline_strip::reverse_iterator rpos;
227                                                   227 
228   if (pStrip2->empty())                           228   if (pStrip2->empty())
229     return false;                                 229     return false;
230                                                   230 
231   double x[4], y[4], weldDist;                    231   double x[4], y[4], weldDist;
232   int index;                                      232   int index;
233   index = pStrip1->front();                       233   index = pStrip1->front();
234   x[0] = get_xi(index);                           234   x[0] = get_xi(index);
235   y[0] = get_yi(index);                           235   y[0] = get_yi(index);
236   index = pStrip1->back();                        236   index = pStrip1->back();
237   x[1] = get_xi(index);                           237   x[1] = get_xi(index);
238   y[1] = get_yi(index);                           238   y[1] = get_yi(index);
239   index = pStrip2->front();                       239   index = pStrip2->front();
240   x[2] = get_xi(index);                           240   x[2] = get_xi(index);
241   y[2] = get_yi(index);                           241   y[2] = get_yi(index);
242   index = pStrip2->back();                        242   index = pStrip2->back();
243   x[3] = get_xi(index);                           243   x[3] = get_xi(index);
244   y[3] = get_yi(index);                           244   y[3] = get_yi(index);
245                                                   245 
246   weldDist = 10*(m_dDx*m_dDx+m_dDy*m_dDy);        246   weldDist = 10*(m_dDx*m_dDx+m_dDy*m_dDy);
247                                                   247 
248   if (((x[1]-x[2])*(x[1]-x[2])+(y[1]-y[2])*(y[    248   if (((x[1]-x[2])*(x[1]-x[2])+(y[1]-y[2])*(y[1]-y[2])< weldDist)
249             || SpecialCompactStripCase(x[1],x[    249             || SpecialCompactStripCase(x[1],x[2],y[1],y[2],aHeight)) // L.Garnier
250                                                   250 
251     {                                             251     {
252     for (pos=pStrip2->begin(); pos!=pStrip2->e    252     for (pos=pStrip2->begin(); pos!=pStrip2->end();pos++)
253     {                                             253     {
254       index=(*pos);                               254       index=(*pos);
255       if(!_ASSERT_RET_(index>=0,"clist_contour    255       if(!_ASSERT_RET_(index>=0,"clist_contour::ForceMerge::0")) return false;
256       pStrip1->insert(pStrip1->end(),index);      256       pStrip1->insert(pStrip1->end(),index);
257     }                                             257     }
258     pStrip2->clear();                             258     pStrip2->clear();
259     return true;                                  259     return true;
260     }                                             260     }
261                                                   261 
262   if (((x[3]-x[0])*(x[3]-x[0])+(y[3]-y[0])*(y[    262   if (((x[3]-x[0])*(x[3]-x[0])+(y[3]-y[0])*(y[3]-y[0])< weldDist)
263             || SpecialCompactStripCase(x[3],x[    263             || SpecialCompactStripCase(x[3],x[0],y[3],y[0],aHeight)) // L.Garnier
264     {                                             264     {
265     for (rpos=pStrip2->rbegin(); rpos!=pStrip2    265     for (rpos=pStrip2->rbegin(); rpos!=pStrip2->rend();rpos++)
266     {                                             266     {
267       index=(*rpos);                              267       index=(*rpos);
268       if(!_ASSERT_RET_(index>=0,"clist_contour    268       if(!_ASSERT_RET_(index>=0,"clist_contour::ForceMerge::1")) return false;
269       pStrip1->insert(pStrip1->begin(),index);    269       pStrip1->insert(pStrip1->begin(),index);
270     }                                             270     }
271     pStrip2->clear();                             271     pStrip2->clear();
272     return true;                                  272     return true;
273     }                                             273     }
274                                                   274 
275   if (((x[1]-x[3])*(x[1]-x[3])+(y[1]-y[3])*(y[    275   if (((x[1]-x[3])*(x[1]-x[3])+(y[1]-y[3])*(y[1]-y[3])< weldDist)
276             || SpecialCompactStripCase(x[1],x[    276             || SpecialCompactStripCase(x[1],x[3],y[1],y[3],aHeight)) // L.Garnier
277     {                                             277     {
278     for (rpos=pStrip2->rbegin(); rpos!=pStrip2    278     for (rpos=pStrip2->rbegin(); rpos!=pStrip2->rend();rpos++)
279     {                                             279     {
280       index=(*rpos);                              280       index=(*rpos);
281       if(!_ASSERT_RET_(index>=0,"clist_contour    281       if(!_ASSERT_RET_(index>=0,"clist_contour::ForceMerge::2")) return false;
282       pStrip1->insert(pStrip1->end(),index);      282       pStrip1->insert(pStrip1->end(),index);
283     }                                             283     }
284     pStrip2->clear();                             284     pStrip2->clear();
285     return true;                                  285     return true;
286     }                                             286     }
287                                                   287 
288   if (((x[0]-x[2])*(x[0]-x[2])+(y[0]-y[2])*(y[    288   if (((x[0]-x[2])*(x[0]-x[2])+(y[0]-y[2])*(y[0]-y[2])< weldDist)
289             || SpecialCompactStripCase(x[0],x[    289             || SpecialCompactStripCase(x[0],x[2],y[0],y[2],aHeight)) // L.Garnier
290     {                                             290     {
291     for (pos=pStrip2->begin(); pos!=pStrip2->e    291     for (pos=pStrip2->begin(); pos!=pStrip2->end();pos++)
292     {                                             292     {
293       index=(*pos);                               293       index=(*pos);
294       if(!_ASSERT_RET_(index>=0,"clist_contour    294       if(!_ASSERT_RET_(index>=0,"clist_contour::ForceMerge::3")) return false;
295       pStrip1->insert(pStrip1->begin(),index);    295       pStrip1->insert(pStrip1->begin(),index);
296     }                                             296     }
297     pStrip2->clear();                             297     pStrip2->clear();
298     return true;                                  298     return true;
299     }                                             299     }
300                                                   300 
301   return false;                                   301   return false;
302 }                                                 302 }
303                                                   303 
304 inline bool clist_contour::MergeStrips(cline_s    304 inline bool clist_contour::MergeStrips(cline_strip* pStrip1, cline_strip* pStrip2)
305 {                                                 305 {
306   cline_strip::iterator pos;                      306   cline_strip::iterator pos;
307   cline_strip::reverse_iterator rpos;             307   cline_strip::reverse_iterator rpos;
308   if (pStrip2->empty())                           308   if (pStrip2->empty())
309     return false;                                 309     return false;
310                                                   310 
311   int index;                                      311   int index;
312                                                   312 
313   // debugging stuff                              313   // debugging stuff
314   if (pStrip2->front()==pStrip1->front())         314   if (pStrip2->front()==pStrip1->front())
315     {                                             315     {
316     // retreiving first element                   316     // retreiving first element
317     pStrip2->pop_front();                         317     pStrip2->pop_front();
318     // adding the rest to strip1                  318     // adding the rest to strip1
319     for (pos=pStrip2->begin(); pos!=pStrip2->e    319     for (pos=pStrip2->begin(); pos!=pStrip2->end();pos++)
320     {                                             320     {
321       index=(*pos);                               321       index=(*pos);
322       if(!_ASSERT_MERGE_RET_(index>=0,"clist_c    322       if(!_ASSERT_MERGE_RET_(index>=0,"clist_contour::MergeStrips::0",pStrip2)) return false;
323       pStrip1->insert(pStrip1->begin(),index);    323       pStrip1->insert(pStrip1->begin(),index);
324     }                                             324     }
325     pStrip2->clear();                             325     pStrip2->clear();
326     return true;                                  326     return true;
327     }                                             327     }
328                                                   328 
329   if (pStrip2->front()==pStrip1->back())          329   if (pStrip2->front()==pStrip1->back())
330     {                                             330     {
331     pStrip2->pop_front();                         331     pStrip2->pop_front();
332     // adding the rest to strip1                  332     // adding the rest to strip1
333     for (pos=pStrip2->begin(); pos!=pStrip2->e    333     for (pos=pStrip2->begin(); pos!=pStrip2->end();pos++)
334     {                                             334     {
335       index=(*pos);                               335       index=(*pos);
336       if(!_ASSERT_MERGE_RET_(index>=0,"clist_c    336       if(!_ASSERT_MERGE_RET_(index>=0,"clist_contour::MergeStrips::1",pStrip2)) return false;
337       pStrip1->insert(pStrip1->end(),index);      337       pStrip1->insert(pStrip1->end(),index);
338     }                                             338     }
339     pStrip2->clear();                             339     pStrip2->clear();
340     return true;                                  340     return true;
341     }                                             341     }
342                                                   342 
343   if (pStrip2->back()==pStrip1->front())          343   if (pStrip2->back()==pStrip1->front())
344     {                                             344     {
345     pStrip2->pop_back();                          345     pStrip2->pop_back();
346     // adding the rest to strip1                  346     // adding the rest to strip1
347     for (rpos=pStrip2->rbegin(); rpos!=pStrip2    347     for (rpos=pStrip2->rbegin(); rpos!=pStrip2->rend();rpos++)
348     {                                             348     {
349       index=(*rpos);                              349       index=(*rpos);
350       if(!_ASSERT_MERGE_RET_(index>=0,"clist_c    350       if(!_ASSERT_MERGE_RET_(index>=0,"clist_contour::MergeStrips::2",pStrip2)) return false;
351       pStrip1->insert(pStrip1->begin(),index);    351       pStrip1->insert(pStrip1->begin(),index);
352     }                                             352     }
353     pStrip2->clear();                             353     pStrip2->clear();
354     return true;                                  354     return true;
355     }                                             355     }
356                                                   356 
357   if (pStrip2->back()==pStrip1->back())           357   if (pStrip2->back()==pStrip1->back())
358     {                                             358     {
359     pStrip2->pop_back();                          359     pStrip2->pop_back();
360     // adding the rest to strip1                  360     // adding the rest to strip1
361     for (rpos=pStrip2->rbegin(); rpos!=pStrip2    361     for (rpos=pStrip2->rbegin(); rpos!=pStrip2->rend();rpos++)
362     {                                             362     {
363       index=(*rpos);                              363       index=(*rpos);
364       if(!_ASSERT_MERGE_RET_(index>=0,"clist_c    364       if(!_ASSERT_MERGE_RET_(index>=0,"clist_contour::MergeStrips::3",pStrip2)) return false;
365       pStrip1->insert(pStrip1->end(),index);      365       pStrip1->insert(pStrip1->end(),index);
366     }                                             366     }
367     pStrip2->clear();                             367     pStrip2->clear();
368     return true;                                  368     return true;
369     }                                             369     }
370                                                   370 
371   return false;                                   371   return false;
372 }                                                 372 }
373                                                   373 
374 inline bool clist_contour::compact_strips ()      374 inline bool clist_contour::compact_strips ()
375 {                                                 375 {
376   cline_strip* pStrip;                            376   cline_strip* pStrip;
377   cline_strip* pStripBase = 0;                    377   cline_strip* pStripBase = 0;
378   UINT i;                                         378   UINT i;
379   cline_strip_list::iterator pos,pos2;            379   cline_strip_list::iterator pos,pos2;
380   cline_strip_list newList;                       380   cline_strip_list newList;
381   bool again, changed;                            381   bool again, changed;
382                                                   382 
383   const double weldDist = 10*(m_dDx*m_dDx+m_dD    383   const double weldDist = 10*(m_dDx*m_dDx+m_dDy*m_dDy);
384                                                   384 
385   if(!_ASSERT_RET_(m_vStripLists.size() == get    385   if(!_ASSERT_RET_(m_vStripLists.size() == get_number_of_planes(),"clist_contour::compact_strips ::0")) return false;
386   for (i=0;i<get_number_of_planes();i++)          386   for (i=0;i<get_number_of_planes();i++)
387   {                                               387   {
388     double planeHeight = get_plane(i);            388     double planeHeight = get_plane(i);
389     again=true;                                   389     again=true;
390     while(again)                                  390     while(again)
391     {                                             391     {
392       // REPEAT COMPACT PROCESS UNTILL LAST PR    392       // REPEAT COMPACT PROCESS UNTILL LAST PROCESS MAKES NO CHANGE
393                                                   393 
394       again=false;                                394       again=false;
395       // building compacted list                  395       // building compacted list
396       if(!_ASSERT_RET_(newList.empty(),"clist_    396       if(!_ASSERT_RET_(newList.empty(),"clist_contour::compact_strips ::1")) return false;
397       for (pos=m_vStripLists[i].begin(); pos!=    397       for (pos=m_vStripLists[i].begin(); pos!=m_vStripLists[i].end();pos++)
398       {                                           398       {
399         pStrip=(*pos);                            399         pStrip=(*pos);
400         for (pos2=newList.begin(); pos2!=newLi    400         for (pos2=newList.begin(); pos2!=newList.end();pos2++)
401         {                                         401         {
402           pStripBase=(*pos2);                     402           pStripBase=(*pos2);
403           changed=MergeStrips(pStripBase,pStri    403           changed=MergeStrips(pStripBase,pStrip);
404           if (changed)                            404           if (changed)
405             again=true;                           405             again=true;
406           if (pStrip->empty())                    406           if (pStrip->empty())
407             break;                                407             break;
408         }                                         408         }
409         if (pStrip->empty())                      409         if (pStrip->empty())
410           delete pStrip;                          410           delete pStrip;
411         else                                      411         else
412           newList.insert(newList.begin(),pStri    412           newList.insert(newList.begin(),pStrip);
413       }                                           413       }
414                                                   414 
415                                                   415 
416       // deleting old list                        416       // deleting old list
417       m_vStripLists[i].clear();                   417       m_vStripLists[i].clear();
418       cline_strip* pStrip2;                       418       cline_strip* pStrip2;
419       // Copying all                              419       // Copying all
420       for (pos2=newList.begin(); pos2 != newLi    420       for (pos2=newList.begin(); pos2 != newList.end(); pos2++)
421       {                                           421       {
422         pStrip2=(*pos2);                          422         pStrip2=(*pos2);
423         cline_strip::iterator pos1 = pStrip2->    423         cline_strip::iterator pos1 = pStrip2->begin(),pos3;
424         while (pos1!=pStrip2->end())              424         while (pos1!=pStrip2->end())
425         {                                         425         {
426           pos3 = pos1;                            426           pos3 = pos1;
427           pos3++;                                 427           pos3++;
428           if (pos3==pStrip2->end()) break; //G    428           if (pos3==pStrip2->end()) break; //G.Barrand
429           if ( (*pos1) == (*pos3))                429           if ( (*pos1) == (*pos3))
430           {                                       430           {
431             /*G.Barrand : we can't compare wit    431             /*G.Barrand : we can't compare with pStrip2->end() content.
432             if ( (*pos3) != (*pStrip2->end()))    432             if ( (*pos3) != (*pStrip2->end()))
433               pStrip2->erase(pos3);               433               pStrip2->erase(pos3);
434             else                                  434             else
435             {                                     435             {
436               pStrip2->erase(pos3);               436               pStrip2->erase(pos3);
437               break;                              437               break;
438             }                                     438             }
439             */                                    439             */
440               pStrip2->erase(pos3); //G.Barran    440               pStrip2->erase(pos3); //G.Barrand.
441           }                                       441           }
442           else                                    442           else
443             pos1++;                               443             pos1++;
444         }                                         444         }
445                                                   445 
446         //if (!(pStrip2->front()==pStrip2->bac    446         //if (!(pStrip2->front()==pStrip2->back() && pStrip2->size()==2))
447         if (pStrip2->size()!=1)                   447         if (pStrip2->size()!=1) 
448           m_vStripLists[i].insert(m_vStripList    448           m_vStripLists[i].insert(m_vStripLists[i].begin(),pStrip2 );
449         else                                      449         else
450           delete pStrip2;                         450           delete pStrip2;
451       }                                           451       }
452       // emptying temp list                       452       // emptying temp list
453       newList.clear();                            453       newList.clear();
454                                                   454 
455     } // OF WHILE(AGAIN) (LAST COMPACT PROCESS    455     } // OF WHILE(AGAIN) (LAST COMPACT PROCESS MADE NO CHANGES)
456                                                   456 
457                                                   457 
458     if (m_vStripLists[i].empty())                 458     if (m_vStripLists[i].empty())
459       continue;                                   459       continue;
460     //////////////////////////////////////////    460     ///////////////////////////////////////////////////////////////////////
461     // compact more                               461     // compact more
462     int index,count;                              462     int index,count;
463     size_t Nstrip,j;                              463     size_t Nstrip,j;
464                                                   464 
465     Nstrip = m_vStripLists[i].size();             465     Nstrip = m_vStripLists[i].size();
466     std::vector<bool> closed(Nstrip);             466     std::vector<bool> closed(Nstrip);
467     double x,y;                                   467     double x,y;
468                                                   468 
469     // First let's find the open and closed li    469     // First let's find the open and closed lists in m_vStripLists
470     for(pos2 = m_vStripLists[i].begin(), j=0,     470     for(pos2 = m_vStripLists[i].begin(), j=0, count=0; pos2 != m_vStripLists[i].end(); pos2++, j++)
471     {                                             471     {
472       pStrip = (*pos2);                           472       pStrip = (*pos2);
473                                                   473 
474       // is it open ?                             474       // is it open ?
475       if (pStrip->front() != pStrip->back())      475       if (pStrip->front() != pStrip->back())
476       {                                           476       {
477         index = pStrip->front();                  477         index = pStrip->front();
478         x = get_xi(index); y = get_yi(index);     478         x = get_xi(index); y = get_yi(index);
479         index = pStrip->back();                   479         index = pStrip->back();
480         x -= get_xi(index); y -= get_yi(index)    480         x -= get_xi(index); y -= get_yi(index);
481                                                   481 
482         // is it "almost closed" ?                482         // is it "almost closed" ?
483         if ((x*x+y*y < weldDist) ||               483         if ((x*x+y*y < weldDist) ||
484                                     SpecialCom    484                                     SpecialCompactStripCase(get_xi(pStrip->front()), // L.Garnier
485                                                   485                                                             get_xi(pStrip->back()),
486                                                   486                                                             get_yi(pStrip->front()),
487                                                   487                                                             get_yi(pStrip->back()),
488                                                   488                                                             planeHeight))
489                                 {                 489                                 {
490                                         closed    490                                         closed[j] = true;
491                                         // clo    491                                         // close it !!! Added by L.Garnier
492                                         pStrip    492                                         pStrip->push_back(pStrip->front());
493                                         //        493                                         //
494                                 }                 494                                 }
495         else                                      495         else
496         {                                         496         {
497           closed[j] = false;                      497           closed[j] = false;
498           // updating not closed counter...       498           // updating not closed counter...
499           count ++;                               499           count ++;
500         }                                         500         }
501       }                                           501       }
502       else                                        502       else
503         closed[j] = true;                         503         closed[j] = true;
504     }                                             504     }
505                                                   505 
506     // is there any open strip ?                  506     // is there any open strip ?
507     if (count > 1)                                507     if (count > 1)
508     {                                             508     {
509       // Merge the open strips into NewList       509       // Merge the open strips into NewList
510       pos = m_vStripLists[i].begin();             510       pos = m_vStripLists[i].begin();
511       for(j=0;j<Nstrip;j++)                       511       for(j=0;j<Nstrip;j++)
512       {                                           512       {
513         if (closed[j] == false )                  513         if (closed[j] == false )
514         {                                         514         {
515           pStrip = (*pos);                        515           pStrip = (*pos);
516           newList.insert(newList.begin(),pStri    516           newList.insert(newList.begin(),pStrip);
517           pos = m_vStripLists[i].erase(pos);      517           pos = m_vStripLists[i].erase(pos);
518         }                                         518         }
519         else                                      519         else
520           pos ++;                                 520           pos ++;
521       }                                           521       }
522                                                   522 
523       // are they open strips to process ?        523       // are they open strips to process ?
524       while(newList.size()>1)                     524       while(newList.size()>1)
525       {                                           525       {
526         pStripBase = newList.front();             526         pStripBase = newList.front();
527                                                   527 
528         // merge the rest to pStripBase           528         // merge the rest to pStripBase
529         again = true;                             529         again = true;
530         while (again)                             530         while (again)
531         {                                         531         {
532           again = false;                          532           again = false;
533           pos = newList.begin();                  533           pos = newList.begin();
534           for(pos++; pos!=newList.end();)         534           for(pos++; pos!=newList.end();)
535           {                                       535           {
536             pStrip = (*pos);                      536             pStrip = (*pos);
537             changed = ForceMerge(pStripBase,pS    537             changed = ForceMerge(pStripBase,pStrip,planeHeight);
538             if (changed)                          538             if (changed)
539             {                                     539             {
540               again = true;                       540               again = true;
541               delete pStrip;                      541               delete pStrip;
542               pos = newList.erase(pos);           542               pos = newList.erase(pos);
543             }                                     543             }
544             else                                  544             else
545               pos ++;                             545               pos ++;
546           }                                       546           }
547         } // while(again)                         547         } // while(again)
548                                                   548 
549         index = pStripBase->front();              549         index = pStripBase->front();
550         x = get_xi(index); y = get_yi(index);     550         x = get_xi(index); y = get_yi(index);
551         index = pStripBase->back();               551         index = pStripBase->back();
552         x -= get_xi(index); y -= get_yi(index)    552         x -= get_xi(index); y -= get_yi(index);
553         // if pStripBase is closed or not         553         // if pStripBase is closed or not
554                                                   554 
555         if ((x*x+y*y < weldDist) ||               555         if ((x*x+y*y < weldDist) ||
556                                     SpecialCom    556                                     SpecialCompactStripCase(get_xi(pStripBase->front()), // L.Garnier
557                                                   557                                                             get_xi(pStripBase->back()),
558                                                   558                                                             get_yi(pStripBase->front()),
559                                                   559                                                             get_yi(pStripBase->back()),
560                                                   560                                                             planeHeight))
561                                 {                 561                                 {
562                                                   562 
563                                   // close it     563                                   // close it !!! Added by L.Garnier
564                                   if ((x!=0) |    564                                   if ((x!=0) || (y!=0)) {
565                                     pStripBase    565                                     pStripBase->push_back(pStripBase->front());
566                                   }               566                                   }
567                                   //              567                                   //
568                                   m_vStripList    568                                   m_vStripLists[i].insert(m_vStripLists[i].begin(),pStripBase);
569                                   newList.pop_    569                                   newList.pop_front();
570         }                                         570         }
571         else                                      571         else
572         {                                         572         {
573           if (OnBoundary(pStripBase))             573           if (OnBoundary(pStripBase))
574           {                                       574           {
575             _TRACE_(_TT("# open strip ends on     575             _TRACE_(_TT("# open strip ends on boundary, continue.\n"));
576             m_vStripLists[i].insert(m_vStripLi    576             m_vStripLists[i].insert(m_vStripLists[i].begin(),pStripBase);
577             newList.pop_front();                  577             newList.pop_front();
578           }                                       578           }
579           else                                    579           else
580           {                                       580           {
581             _PROBLEM_(_TT("unpaird open strip     581             _PROBLEM_(_TT("unpaird open strip at 1!\n"));
582             //exit(0);                            582             //exit(0);
583             return false;                         583             return false;
584           }                                       584           }
585         }                                         585         }
586       } // while(newList.size()>1);               586       } // while(newList.size()>1);
587                                                   587 
588                                                   588 
589       if (newList.size() ==1)                     589       if (newList.size() ==1)
590       {                                           590       {
591         pStripBase = newList.front();             591         pStripBase = newList.front();
592         index = pStripBase->front(); // L.Garn    592         index = pStripBase->front(); // L.Garnier
593         x = get_xi(index); y = get_yi(index);     593         x = get_xi(index); y = get_yi(index); // L.Garnier
594         index = pStripBase->back(); // L.Garni    594         index = pStripBase->back(); // L.Garnier
595         x -= get_xi(index); y -= get_yi(index)    595         x -= get_xi(index); y -= get_yi(index); // L.Garnier
596                                                   596 
597         // is it "almost closed", give last ch    597         // is it "almost closed", give last chance...5*weldDist
598         if (x*x+y*y < 3*weldDist) // L.Garnier    598         if (x*x+y*y < 3*weldDist) // L.Garnier
599         {                                         599         {
600           m_vStripLists[i].insert(m_vStripList    600           m_vStripLists[i].insert(m_vStripLists[i].begin(),pStripBase);
601           newList.pop_front();                    601           newList.pop_front();
602         }                                         602         }
603         else if (OnBoundary(pStripBase))          603         else if (OnBoundary(pStripBase))
604         {                                         604         {
605           _TRACE_(_TT("# open strip ends on bo    605           _TRACE_(_TT("# open strip ends on boundary, continue.\n"));
606           m_vStripLists[i].insert(m_vStripList    606           m_vStripLists[i].insert(m_vStripLists[i].begin(),pStripBase);
607           newList.pop_front();                    607           newList.pop_front();
608         }                                         608         }
609         else                                      609         else
610         {                                         610         {
611           _PROBLEM_(_TT("unpaird open strip at    611           _PROBLEM_(_TT("unpaird open strip at 2!\n"));
612           DumpPlane(i);                           612           DumpPlane(i);
613           //exit(0);                              613           //exit(0);
614           return false;                           614           return false;
615         }                                         615         }
616       }                                           616       }
617                                                   617 
618       newList.clear();                            618       newList.clear();
619                                                   619 
620     }                                             620     }
621     else if (count == 1)                          621     else if (count == 1)
622     {                                             622     {
623       pos = m_vStripLists[i].begin();             623       pos = m_vStripLists[i].begin();
624       for(j=0;j<Nstrip;j++)                       624       for(j=0;j<Nstrip;j++)
625       {                                           625       {
626         if (closed[j] == false )                  626         if (closed[j] == false )
627         {                                         627         {
628           pStripBase = (*pos);                    628           pStripBase = (*pos);
629           break;                                  629           break;
630         }                                         630         }
631         pos ++;                                   631         pos ++;
632       }                                           632       }
633       index = pStripBase->front(); // L.Garnie    633       index = pStripBase->front(); // L.Garnier
634       x = get_xi(index); y = get_yi(index); //    634       x = get_xi(index); y = get_yi(index); // L.Garnier
635       index = pStripBase->back(); // L.Garnier    635       index = pStripBase->back(); // L.Garnier
636       x -= get_xi(index); y -= get_yi(index);     636       x -= get_xi(index); y -= get_yi(index); // L.Garnier
637                                                   637        
638       // is it "almost closed", give last chan    638       // is it "almost closed", give last chance...5*weldDist
639       if (x*x+y*y < 2*weldDist) // L.Garnier      639       if (x*x+y*y < 2*weldDist) // L.Garnier
640       {                                           640       {
641         //close it!!                              641         //close it!!
642         pStripBase->push_back(pStripBase->fron    642         pStripBase->push_back(pStripBase->front()); // L.Garnier
643       }                                           643       }
644       else if (OnBoundary(pStripBase))            644       else if (OnBoundary(pStripBase))
645       {                                           645       {
646         _TRACE_(_TT("# open strip ends on boun    646         _TRACE_(_TT("# open strip ends on boundary, continue.\n"));
647         pStripBase->push_back(pStripBase->fron    647         pStripBase->push_back(pStripBase->front()); // L.Garnier
648       }                                           648       }
649       else                                        649       else
650       {                                           650       {
651         _TRACE_(_TT("unpaird open strip at 3!"    651         _TRACE_(_TT("unpaird open strip at 3!"));
652         DumpPlane(i);                             652         DumpPlane(i);
653         return false;  // L.Garnier               653         return false;  // L.Garnier
654         //exit(0);                                654         //exit(0);
655       }                                           655       }
656       newList.clear();  // L.Garnier              656       newList.clear();  // L.Garnier
657     }                                             657     }
658   }                                               658   }
659         return true;                              659         return true;
660 }                                                 660 }
661                                                   661 
662                                                   662 
663 inline bool clist_contour::OnBoundary(cline_st    663 inline bool clist_contour::OnBoundary(cline_strip* pStrip)
664 {                                                 664 {
665   bool e1,e2;                                     665   bool e1,e2;
666                                                   666 
667   int index = pStrip->front();                    667   int index = pStrip->front();
668   double x = get_xi(index), y = get_yi(index);    668   double x = get_xi(index), y = get_yi(index);
669   if (x==m_pLimits[0] || x == m_pLimits[1] ||     669   if (x==m_pLimits[0] || x == m_pLimits[1] ||
670     y == m_pLimits[2] || y == m_pLimits[3])       670     y == m_pLimits[2] || y == m_pLimits[3])
671     e1 = true;                                    671     e1 = true;
672   else                                            672   else
673     e1 = false;                                   673     e1 = false;
674                                                   674 
675   index = pStrip->back();                         675   index = pStrip->back();
676   x = get_xi(index); y = get_yi(index);           676   x = get_xi(index); y = get_yi(index);
677   if (x==m_pLimits[0] || x == m_pLimits[1] ||     677   if (x==m_pLimits[0] || x == m_pLimits[1] ||
678     y == m_pLimits[2] || y == m_pLimits[3])       678     y == m_pLimits[2] || y == m_pLimits[3])
679     e2 = true;                                    679     e2 = true;
680   else                                            680   else
681     e2 = false;                                   681     e2 = false;
682                                                   682 
683   return (e1 && e2);                              683   return (e1 && e2);
684 }                                                 684 }
685                                                   685 
686 inline void clist_contour::DumpPlane(UINT iPla    686 inline void clist_contour::DumpPlane(UINT iPlane) const
687 {                                                 687 {
688   cline_strip_list::const_iterator pos;           688   cline_strip_list::const_iterator pos;
689   UINT i;                                         689   UINT i;
690   cline_strip* pStrip;                            690   cline_strip* pStrip;
691                                                   691 
692   /*_ASSERT_(iPlane>=0,"clist_contour::DumpPla    692   /*_ASSERT_(iPlane>=0,"clist_contour::DumpPlane");*/
693   _ASSERT_(iPlane<get_number_of_planes(),"clis    693   _ASSERT_(iPlane<get_number_of_planes(),"clist_contour::DumpPlane::0");
694   _TRACE_(_TT("Level : %d"),get_plane(iPlane))    694   _TRACE_(_TT("Level : %d"),get_plane(iPlane));
695                                                   695 
696   _TRACE_(_TT("Number of strips : %d\r\n"),m_v    696   _TRACE_(_TT("Number of strips : %d\r\n"),m_vStripLists[iPlane].size());
697   _TRACE_(_TT("i np start end xstart ystart xe    697   _TRACE_(_TT("i np start end xstart ystart xend yend\r\n"));
698   for (pos = m_vStripLists[iPlane].begin(), i=    698   for (pos = m_vStripLists[iPlane].begin(), i=0; pos != m_vStripLists[iPlane].end(); pos++, i++)
699   {                                               699   {
700     pStrip=*pos;                                  700     pStrip=*pos;
701     _ASSERTP_(pStrip,"clist_contour::DumpPlane    701     _ASSERTP_(pStrip,"clist_contour::DumpPlane::1");
702     _TRACE_(_TT("%d %d %d %d %g %g %g %g\r\n")    702     _TRACE_(_TT("%d %d %d %d %g %g %g %g\r\n"),i,pStrip->size(),pStrip->front(),pStrip->back(),
703       get_xi(pStrip->front()),get_yi(pStrip->f    703       get_xi(pStrip->front()),get_yi(pStrip->front()),
704       get_xi(pStrip->back()),get_yi(pStrip->ba    704       get_xi(pStrip->back()),get_yi(pStrip->back()) );
705   }                                               705   }
706 }                                                 706 }
707                                                   707 
708 inline double clist_contour::Area(cline_strip*    708 inline double clist_contour::Area(cline_strip* Line)
709 {                                                 709 {
710   // if Line is not closed, return 0;             710   // if Line is not closed, return 0;
711                                                   711 
712   double Ar = 0, x, y, x0,y0,x1, y1;              712   double Ar = 0, x, y, x0,y0,x1, y1;
713   int index;                                      713   int index;
714                                                   714 
715   cline_strip::iterator pos;                      715   cline_strip::iterator pos;
716   pos = Line->begin();                            716   pos = Line->begin();
717   index = (*pos);                                 717   index = (*pos);
718   x0 = x =  get_xi(index);                        718   x0 = x =  get_xi(index);
719   y0 = y =  get_yi(index);                        719   y0 = y =  get_yi(index);
720                                                   720 
721   pos ++;                                         721   pos ++;
722                                                   722 
723   for(;pos!=Line->end();pos++)                    723   for(;pos!=Line->end();pos++)
724   {                                               724   {
725     index = (*pos);                               725     index = (*pos);
726     x1 = get_xi(index);                           726     x1 = get_xi(index);
727     y1 = get_yi(index);                           727     y1 = get_yi(index);
728     // Ar += (x1-x)*(y1+y);                       728     // Ar += (x1-x)*(y1+y);
729     Ar += (y1-y)*(x1+x)-(x1-x)*(y1+y);            729     Ar += (y1-y)*(x1+x)-(x1-x)*(y1+y);
730     x = x1;                                       730     x = x1;
731     y = y1;                                       731     y = y1;
732                                                   732 
733   }                                               733   }
734                                                   734 
735                                                   735 
736   //Ar += (x0-x)*(y0+y);                          736   //Ar += (x0-x)*(y0+y);
737   Ar += (y0-y)*(x0+x)-(x0-x)*(y0+y);              737   Ar += (y0-y)*(x0+x)-(x0-x)*(y0+y);
738   // if not closed curve, return 0;               738   // if not closed curve, return 0;
739   if ((x0-x)*(x0-x) + (y0-y)*(y0-y)>20*(m_dDx*    739   if ((x0-x)*(x0-x) + (y0-y)*(y0-y)>20*(m_dDx*m_dDx+m_dDy*m_dDy))
740   {                                               740   {
741     Ar = 0;                                       741     Ar = 0;
742     _TRACE_(_TT("# open curve!\n"));              742     _TRACE_(_TT("# open curve!\n"));
743   }                                               743   }
744   //else   Ar /= -2;                              744   //else   Ar /= -2;
745   else Ar/=4;                                     745   else Ar/=4;
746   // result is \int ydex/2 alone the implicit     746   // result is \int ydex/2 alone the implicit direction.
747   return Ar;                                      747   return Ar;
748 }                                                 748 }
749                                                   749 
750 inline double clist_contour:: EdgeWeight(cline    750 inline double clist_contour:: EdgeWeight(cline_strip* pLine, double R)
751 {                                                 751 {
752   cline_strip::iterator pos;                      752   cline_strip::iterator pos;
753   int count = 0,index;                            753   int count = 0,index;
754   double x,y;                                     754   double x,y;
755   for(pos = pLine->begin(); pos!=pLine->end();    755   for(pos = pLine->begin(); pos!=pLine->end(); pos++)
756   {                                               756   {
757     index = (*pos);                               757     index = (*pos);
758     x = get_xi(index);                            758     x = get_xi(index);
759     y = get_yi(index);                            759     y = get_yi(index);
760     if (fabs(x) > R || fabs(y) > R)               760     if (fabs(x) > R || fabs(y) > R)
761       count ++;                                   761       count ++;
762   }                                               762   }
763   return (double)count/pLine->size();             763   return (double)count/pLine->size();
764 }                                                 764 }
765                                                   765 
766 /*                                                766 /*
767 inline bool clist_contour::PrintContour(std::o    767 inline bool clist_contour::PrintContour(std::ostream& a_out)
768 {                                                 768 {
769         std::streamsize old_prec = a_out.preci    769         std::streamsize old_prec = a_out.precision(3);
770   a_out << std::setprecision(10);                 770   a_out << std::setprecision(10);
771                                                   771 
772   UINT i, index;                                  772   UINT i, index;
773   cline_strip* pStrip;                            773   cline_strip* pStrip;
774   cline_strip::iterator pos2;                     774   cline_strip::iterator pos2;
775   cline_strip_list::iterator pos;                 775   cline_strip_list::iterator pos;
776                                                   776 
777   for(i=0;i<get_number_of_planes();i++) {         777   for(i=0;i<get_number_of_planes();i++) {
778     for(pos = m_vStripLists[i].begin();pos!=m_    778     for(pos = m_vStripLists[i].begin();pos!=m_vStripLists[i].end();pos++)
779     {                                             779     {
780       pStrip = (*pos);                            780       pStrip = (*pos);
781       for(pos2 = pStrip->begin();pos2!=pStrip-    781       for(pos2 = pStrip->begin();pos2!=pStrip->end();pos2++)
782       {                                           782       {
783         index = (*pos2);                          783         index = (*pos2);
784           a_out << get_xi(index)<<"\t"<<get_yi    784           a_out << get_xi(index)<<"\t"<<get_yi(index)<<"\n";
785       }                                           785       }
786       a_out<<"\n";                                786       a_out<<"\n";
787     }                                             787     }
788   }                                               788   }
789         a_out.precision(old_prec);                789         a_out.precision(old_prec);
790   return true;                                    790   return true;
791                                                   791 
792 }                                                 792 }
793 */                                                793 */
794                                                   794 
795 //G.Barrand : from .h to .cxx to avoid _ASSERT    795 //G.Barrand : from .h to .cxx to avoid _ASSERT_ in .h
796 inline cline_strip_list* clist_contour::get_li    796 inline cline_strip_list* clist_contour::get_lines(unsigned int iPlane)  {
797   /*_ASSERT_(iPlane>=0);*/                        797   /*_ASSERT_(iPlane>=0);*/
798   _ASSERT_(iPlane<get_number_of_planes(),"clis    798   _ASSERT_(iPlane<get_number_of_planes(),"clist_contour::get_lines");
799   return &m_vStripLists[iPlane];                  799   return &m_vStripLists[iPlane];
800 }                                                 800 }
801                                                   801 
802 // Added by L.Garnier                             802 // Added by L.Garnier
803 inline bool clist_contour::SpecialCompactStrip    803 inline bool clist_contour::SpecialCompactStripCase(double aXfront,double aXback,double aYfront,double aYback,double actualHeight)
804 {                                                 804 {
805   // To solve the case of a list of strips        805   // To solve the case of a list of strips
806   // which appeared to be open but should corr    806   // which appeared to be open but should correspond to a closed
807   // contour.                                     807   // contour.
808   //  With the today generate() algorithm, it     808   //  With the today generate() algorithm, it appears that we fall
809   // on this case when the begin and end point    809   // on this case when the begin and end points
810   // are on a horizontal or vertical line.        810   // are on a horizontal or vertical line.
811   // (case where front()->x == back()->x or fr    811   // (case where front()->x == back()->x or front()->y == back()->y).
812   //  We try to detect in this method this sit    812   //  We try to detect in this method this situation and decide to close
813   // or not the line. To do that we check the     813   // or not the line. To do that we check the heigth of intermediate
814   // points to see if there are on the same co    814   // points to see if there are on the same contour; if so we close
815   // the line (and return true), if not we do     815   // the line (and return true), if not we do nothing (and return false).
816                                                   816 
817   // check if we could realy close it             817   // check if we could realy close it
818   float marge = 1; // *m_dDy or *m_dDx. 1 seem    818   float marge = 1; // *m_dDy or *m_dDx. 1 seems to be good and normal, but why
819                    // not 2 in certain cases??    819                    // not 2 in certain cases???
820                                                   820 
821   double distToNext =0;                           821   double distToNext =0;
822   // try to get the correct hight                 822   // try to get the correct hight
823   if (get_plane(0)>= actualHeight) {              823   if (get_plane(0)>= actualHeight) {
824     return false;                                 824     return false;
825   }                                               825   }
826   if (get_number_of_planes() >1){                 826   if (get_number_of_planes() >1){
827     distToNext = get_plane(1)-get_plane(0);       827     distToNext = get_plane(1)-get_plane(0);
828   } else {                                        828   } else {
829     return false;                                 829     return false;
830   }                                               830   }
831                                                   831 
832   if ((aYback-aYfront) == 0) {                    832   if ((aYback-aYfront) == 0) {
833     double temp;                                  833     double temp;
834     double av;                                    834     double av;
835     double eg;                                    835     double eg;
836     double ap;                                    836     double ap;
837                                                   837 
838     if (aXfront==m_pLimits[0] && aXback == m_p    838     if (aXfront==m_pLimits[0] && aXback == m_pLimits[1]) return false;
839     if (aXfront==m_pLimits[1] && aXback == m_p    839     if (aXfront==m_pLimits[1] && aXback == m_pLimits[0]) return false;
840                                                   840 
841     if (aXfront > aXback ) {                      841     if (aXfront > aXback ) {
842       temp = aXfront;                             842       temp = aXfront;
843       aXfront = aXback;                           843       aXfront = aXback;
844       aXback = temp;                              844       aXback = temp;
845     }                                             845     }
846     for(double check=aXfront+m_dDx;               846     for(double check=aXfront+m_dDx;
847         check<aXback;                             847         check<aXback;
848         check+=m_dDx) {                           848         check+=m_dDx) {
849       av = ((*m_pFieldFcn)(check,aYback-marge*    849       av = ((*m_pFieldFcn)(check,aYback-marge*m_dDy,m_pFieldFcnData)-actualHeight);
850       eg = ((*m_pFieldFcn)(check,aYback,m_pFie    850       eg = ((*m_pFieldFcn)(check,aYback,m_pFieldFcnData)-actualHeight);
851       ap = ((*m_pFieldFcn)(check,aYback+marge*    851       ap = ((*m_pFieldFcn)(check,aYback+marge*m_dDy,m_pFieldFcnData)-actualHeight);
852                                                   852 
853       if ((av>distToNext) && (ap>distToNext) &    853       if ((av>distToNext) && (ap>distToNext) && (eg>distToNext)) {
854         return false;                             854         return false;
855       } else if ((av<0) && (ap<0) && (eg<0)) {    855       } else if ((av<0) && (ap<0) && (eg<0)) {
856         return false;                             856         return false;
857       }                                           857       }
858     }                                             858     }
859     return true;                                  859     return true;
860   } else if ((aXback-aXfront) == 0) {             860   } else if ((aXback-aXfront) == 0) {
861     double temp;                                  861     double temp;
862     double av;                                    862     double av;
863     double eg;                                    863     double eg;
864     double ap;                                    864     double ap;
865     if (aYfront==m_pLimits[3] && aYback == m_p    865     if (aYfront==m_pLimits[3] && aYback == m_pLimits[2]) return false;
866     if (aYfront==m_pLimits[2] && aYback == m_p    866     if (aYfront==m_pLimits[2] && aYback == m_pLimits[3]) return false;
867                                                   867 
868     if (aYfront > aYback ) {                      868     if (aYfront > aYback ) {
869       temp = aYfront;                             869       temp = aYfront;
870       aYfront = aYback;                           870       aYfront = aYback;
871       aYback = temp;                              871       aYback = temp;
872     }                                             872     }
873                                                   873 
874     for(double check=aYfront+m_dDy;               874     for(double check=aYfront+m_dDy;
875         check<aYback;                             875         check<aYback;
876         check+=m_dDy) {                           876         check+=m_dDy) {
877       av = ((*m_pFieldFcn)(aXback-marge*m_dDx,    877       av = ((*m_pFieldFcn)(aXback-marge*m_dDx,check,m_pFieldFcnData)-actualHeight);
878       eg = ((*m_pFieldFcn)(aXback,check,m_pFie    878       eg = ((*m_pFieldFcn)(aXback,check,m_pFieldFcnData)-actualHeight);
879       ap = ((*m_pFieldFcn)(aXback+marge*m_dDx,    879       ap = ((*m_pFieldFcn)(aXback+marge*m_dDx,check,m_pFieldFcnData)-actualHeight);
880       if ((av>distToNext) && (ap>distToNext) &    880       if ((av>distToNext) && (ap>distToNext) && (eg>distToNext)) {
881         return false;                             881         return false;
882       } else if ((av<0) && (ap<0) && (eg<0)) {    882       } else if ((av<0) && (ap<0) && (eg<0)) {
883         return false;                             883         return false;
884       }                                           884       }
885     }                                             885     }
886     return true;                                  886     return true;
887   }                                               887   }
888   return false;                                   888   return false;
889 }                                                 889 }
890                                                   890 
891 }                                                 891 }
892                                                   892 
893 #endif                                            893 #endif