1 // Copyright (C) 2007-2016 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 // Author : Anthony Geay (CEA/DEN)
21 #include "InterpKernelGeo2DQuadraticPolygon.hxx"
22 #include "InterpKernelGeo2DElementaryEdge.hxx"
23 #include "InterpKernelGeo2DEdgeArcCircle.hxx"
24 #include "InterpKernelGeo2DAbstractEdge.hxx"
25 #include "InterpKernelGeo2DEdgeLin.hxx"
26 #include "InterpKernelGeo2DBounds.hxx"
27 #include "InterpKernelGeo2DEdge.txx"
29 #include "NormalizedUnstructuredMesh.hxx"
37 using namespace INTERP_KERNEL;
39 namespace INTERP_KERNEL
41 const unsigned MAX_SIZE_OF_LINE_XFIG_FILE=1024;
44 QuadraticPolygon::QuadraticPolygon(const char *file)
46 char currentLine[MAX_SIZE_OF_LINE_XFIG_FILE];
47 std::ifstream stream(file);
48 stream.exceptions(std::ios_base::eofbit);
52 stream.getline(currentLine,MAX_SIZE_OF_LINE_XFIG_FILE);
53 while(strcmp(currentLine,"1200 2")!=0);
56 Edge *newEdge=Edge::BuildFromXfigLine(stream);
58 newEdge->changeStartNodeWith(back()->getEndNode());
63 catch(const std::ifstream::failure&)
66 catch(const std::exception & ex)
68 // Some code before this catch throws the C++98 version of the exception (mangled
69 // name is " NSt8ios_base7failureE"), but FED24 compilation of the current version of the code
70 // tries to catch the C++11 version of it (mangled name "NSt8ios_base7failureB5cxx11E").
71 // So we have this nasty hack to catch both versions ...
73 // TODO: the below should be replaced by a better handling avoiding exception throwing.
74 if (std::string(ex.what()) == "basic_ios::clear")
76 //std::cout << "std::ios_base::failure C++11\n";
81 front()->changeStartNodeWith(back()->getEndNode());
84 QuadraticPolygon::~QuadraticPolygon()
88 QuadraticPolygon *QuadraticPolygon::BuildLinearPolygon(std::vector<Node *>& nodes)
90 QuadraticPolygon *ret(new QuadraticPolygon);
91 std::size_t size=nodes.size();
92 for(std::size_t i=0;i<size;i++)
94 ret->pushBack(new EdgeLin(nodes[i],nodes[(i+1)%size]));
100 QuadraticPolygon *QuadraticPolygon::BuildArcCirclePolygon(std::vector<Node *>& nodes)
102 QuadraticPolygon *ret(new QuadraticPolygon);
103 std::size_t size=nodes.size();
104 for(std::size_t i=0;i<size/2;i++)
108 e1=new EdgeLin(nodes[i],nodes[i+size/2]);
109 e2=new EdgeLin(nodes[i+size/2],nodes[(i+1)%(size/2)]);
110 SegSegIntersector inters(*e1,*e2);
111 bool colinearity=inters.areColinears();
112 delete e1; delete e2;
114 ret->pushBack(new EdgeLin(nodes[i],nodes[(i+1)%(size/2)]));
116 ret->pushBack(new EdgeArcCircle(nodes[i],nodes[i+size/2],nodes[(i+1)%(size/2)]));
117 nodes[i]->decrRef(); nodes[i+size/2]->decrRef();
122 Edge *QuadraticPolygon::BuildLinearEdge(std::vector<Node *>& nodes)
125 throw INTERP_KERNEL::Exception("QuadraticPolygon::BuildLinearEdge : input vector is expected to be of size 2 !");
126 Edge *ret(new EdgeLin(nodes[0],nodes[1]));
127 nodes[0]->decrRef(); nodes[1]->decrRef();
131 Edge *QuadraticPolygon::BuildArcCircleEdge(std::vector<Node *>& nodes)
134 throw INTERP_KERNEL::Exception("QuadraticPolygon::BuildArcCircleEdge : input vector is expected to be of size 3 !");
135 EdgeLin *e1(new EdgeLin(nodes[0],nodes[2])),*e2(new EdgeLin(nodes[2],nodes[1]));
136 SegSegIntersector inters(*e1,*e2);
137 bool colinearity=inters.areColinears();
138 delete e1; delete e2;
141 ret=new EdgeLin(nodes[0],nodes[1]);
143 ret=new EdgeArcCircle(nodes[0],nodes[2],nodes[1]);
144 nodes[0]->decrRef(); nodes[1]->decrRef(); nodes[2]->decrRef();
148 void QuadraticPolygon::BuildDbgFile(const std::vector<Node *>& nodes, const char *fileName)
150 std::ofstream file(fileName);
151 file << std::setprecision(16);
152 file << " double coords[]=" << std::endl << " { ";
153 for(std::vector<Node *>::const_iterator iter=nodes.begin();iter!=nodes.end();iter++)
155 if(iter!=nodes.begin())
156 file << "," << std::endl << " ";
157 file << (*(*iter))[0] << ", " << (*(*iter))[1];
159 file << "};" << std::endl;
162 void QuadraticPolygon::closeMe() const
164 if(!front()->changeStartNodeWith(back()->getEndNode()))
165 throw(Exception("big error: not closed polygon..."));
168 void QuadraticPolygon::circularPermute()
170 if(_sub_edges.size()>1)
172 ElementaryEdge *first=_sub_edges.front();
173 _sub_edges.pop_front();
174 _sub_edges.push_back(first);
178 bool QuadraticPolygon::isButterflyAbs()
180 INTERP_KERNEL::Bounds b;
182 b.prepareForAggregation();
184 double dimChar=b.getCaracteristicDim();
185 b.getBarycenter(xBary,yBary);
186 applyGlobalSimilarity(xBary,yBary,dimChar);
188 return isButterfly();
191 bool QuadraticPolygon::isButterfly() const
193 for(std::list<ElementaryEdge *>::const_iterator it=_sub_edges.begin();it!=_sub_edges.end();it++)
195 Edge *e1=(*it)->getPtr();
196 std::list<ElementaryEdge *>::const_iterator it2=it;
198 for(;it2!=_sub_edges.end();it2++)
200 MergePoints commonNode;
201 ComposedEdge *outVal1=new ComposedEdge;
202 ComposedEdge *outVal2=new ComposedEdge;
203 Edge *e2=(*it2)->getPtr();
204 if(e1->intersectWith(e2,commonNode,*outVal1,*outVal2))
217 void QuadraticPolygon::dumpInXfigFileWithOther(const ComposedEdge& other, const char *fileName) const
219 std::ofstream file(fileName);
220 const int resolution=1200;
222 box.prepareForAggregation();
224 other.fillBounds(box);
225 dumpInXfigFile(file,resolution,box);
226 other.ComposedEdge::dumpInXfigFile(file,resolution,box);
229 void QuadraticPolygon::dumpInXfigFile(const char *fileName) const
231 std::ofstream file(fileName);
232 const int resolution=1200;
234 box.prepareForAggregation();
236 dumpInXfigFile(file,resolution,box);
239 void QuadraticPolygon::dumpInXfigFile(std::ostream& stream, int resolution, const Bounds& box) const
241 stream << "#FIG 3.2 Produced by xfig version 3.2.5-alpha5" << std::endl;
242 stream << "Landscape" << std::endl;
243 stream << "Center" << std::endl;
244 stream << "Metric" << std::endl;
245 stream << "Letter" << std::endl;
246 stream << "100.00" << std::endl;
247 stream << "Single" << std::endl;
248 stream << "-2" << std::endl;
249 stream << resolution << " 2" << std::endl;
250 ComposedEdge::dumpInXfigFile(stream,resolution,box);
254 * Warning contrary to intersectWith method this method is \b NOT const. 'this' and 'other' are modified after call of this method.
256 double QuadraticPolygon::intersectWithAbs(QuadraticPolygon& other)
258 double ret=0.,xBaryBB,yBaryBB;
259 double fact=normalize(&other,xBaryBB,yBaryBB);
260 std::vector<QuadraticPolygon *> polygs=intersectMySelfWith(other);
261 for(std::vector<QuadraticPolygon *>::iterator iter=polygs.begin();iter!=polygs.end();iter++)
263 ret+=fabs((*iter)->getArea());
266 return ret*fact*fact;
270 * This method splits 'this' with 'other' into smaller pieces localizable. 'mapThis' is a map that gives the correspondence
271 * between nodes contained in 'this' and node ids in a global mesh.
272 * In the same way, 'mapOther' gives the correspondence between nodes contained in 'other' and node ids in a
273 * global mesh from which 'other' is extracted.
274 * This method has 1 out parameter : 'edgesThis', After the call of this method, it contains the nodal connectivity (including type)
275 * of 'this' into globlal "this mesh".
276 * This method has 2 in/out parameters : 'subDivOther' and 'addCoo'.'otherEdgeIds' is useful to put values in
277 * 'edgesThis', 'subDivOther' and 'addCoo'.
278 * Size of 'otherEdgeIds' has to be equal to number of ElementaryEdges in 'other'. No check of that will be done.
279 * The term 'abs' in the name recalls that we normalize the mesh (spatially) so that node coordinates fit into [0;1].
280 * @param offset1 is the number of nodes contained in global mesh from which 'this' is extracted.
281 * @param offset2 is the sum of nodes contained in global mesh from which 'this' is extracted and 'other' is extracted.
282 * @param edgesInOtherColinearWithThis will be appended at the end of the vector with colinear edge ids of other (if any)
283 * @param otherEdgeIds is a vector with the same size than other before calling this method. It gives in the same order
284 * the cell id in global other mesh.
286 void QuadraticPolygon::splitAbs(QuadraticPolygon& other,
287 const std::map<INTERP_KERNEL::Node *,int>& mapThis, const std::map<INTERP_KERNEL::Node *,int>& mapOther,
288 int offset1, int offset2 ,
289 const std::vector<int>& otherEdgeIds,
290 std::vector<int>& edgesThis, int cellIdThis,
291 std::vector< std::vector<int> >& edgesInOtherColinearWithThis, std::vector< std::vector<int> >& subDivOther,
292 std::vector<double>& addCoo, std::map<int,int>& mergedNodes)
294 double xBaryBB, yBaryBB;
295 double fact=normalizeExt(&other, xBaryBB, yBaryBB);
298 IteratorOnComposedEdge itThis(this),itOther(&other); // other is (part of) the tool mesh
300 ComposedEdge *cThis=new ComposedEdge;
301 ComposedEdge *cOther=new ComposedEdge;
303 std::map<INTERP_KERNEL::Node *,int> mapAddCoo;
304 for(itOther.first();!itOther.finished();itOther.next(),i++)
306 // For each edge of 'other', proceed with intersections: the edge might split into sub-edges, 'otherTmp' will hold the final split result.
307 // In the process of going through all edges of 'other', 'this' (which contains initially only one edge)
308 // is sub-divised into several edges : each of them has to be tested when intersecting the next candidate stored in 'other'.
309 QuadraticPolygon otherTmp;
310 ElementaryEdge* curOther=itOther.current();
311 otherTmp.pushBack(new ElementaryEdge(curOther->getPtr(),curOther->getDirection())); curOther->getPtr()->incrRef();
312 IteratorOnComposedEdge itOtherTmp(&otherTmp);
313 for(itOtherTmp.first();!itOtherTmp.finished();itOtherTmp.next())
315 ElementaryEdge* curOtherTmp=itOtherTmp.current();
316 if(!curOtherTmp->isThereStartPoint())
317 itThis.first(); // reset iterator on 'this'
319 itThis=curOtherTmp->getIterator();
320 for(;!itThis.finished();)
322 ElementaryEdge* curThis=itThis.current();
325 std::map<INTERP_KERNEL::Node *,int>::const_iterator thisStart(mapThis.find(curThis->getStartNode())),thisEnd(mapThis.find(curThis->getEndNode())),
326 otherStart(mapOther.find(curOtherTmp->getStartNode())),otherEnd(mapOther.find(curOtherTmp->getEndNode()));
327 int thisStart2(thisStart==mapThis.end()?-1:(*thisStart).second), thisEnd2(thisEnd==mapThis.end()?-1:(*thisEnd).second),
328 otherStart2(otherStart==mapOther.end()?-1:(*otherStart).second+offset1),otherEnd2(otherEnd==mapOther.end()?-1:(*otherEnd).second+offset1);
330 if(curThis->getPtr()->intersectWith(curOtherTmp->getPtr(),merge,*cThis,*cOther))
332 if(!curThis->getDirection()) cThis->reverse();
333 if(!curOtherTmp->getDirection()) cOther->reverse();
334 // Substitution of a single simple edge by two sub-edges resulting from the intersection
335 // First modify the edges currently pointed by itThis and itOtherTmp so that the newly created node
336 // becomes the end of the previous sub-edge and the beginning of the next one.
337 UpdateNeighbours(merge,itThis,itOtherTmp,cThis,cOther);
338 delete curThis; // <-- destroying simple edge coming from pol1
339 delete curOtherTmp; // <-- destroying simple edge coming from pol2
340 // Then insert second part of the intersection.
341 itThis.insertElemEdges(cThis,true); // <-- 2nd param is true to go next.
342 itOtherTmp.insertElemEdges(cOther,false); // <-- 2nd param is false to avoid to go next.
343 curOtherTmp=itOtherTmp.current();
345 itThis.assignMySelfToAllElems(cOther);
348 cThis=new ComposedEdge;
349 cOther=new ComposedEdge;
353 UpdateNeighbours(merge,itThis,itOtherTmp,curThis,curOtherTmp);
356 merge.updateMergedNodes(thisStart2,thisEnd2,otherStart2,otherEnd2,mergedNodes);
359 // If one sub-edge of otherTmp is "ON" an edge of this, then we have colinearity (all edges in otherTmp are //)
360 if(otherTmp.presenceOfOn())
361 edgesInOtherColinearWithThis[otherEdgeIds[i]].push_back(cellIdThis);
362 // Converting back to integer connectivity:
363 if(otherTmp._sub_edges.size()>1) // only if a new point has been added (i.e. an actual intersection was done)
365 for(std::list<ElementaryEdge *>::const_iterator it=otherTmp._sub_edges.begin();it!=otherTmp._sub_edges.end();it++)
366 (*it)->fillGlobalInfoAbs2(mapThis,mapOther,offset1,offset2,/**/fact,xBaryBB,yBaryBB,/**/subDivOther[otherEdgeIds[i]],addCoo,mapAddCoo);
372 for(std::list<ElementaryEdge *>::const_iterator it=_sub_edges.begin();it!=_sub_edges.end();it++)
373 (*it)->fillGlobalInfoAbs(mapThis,mapOther,offset1,offset2,/**/fact,xBaryBB,yBaryBB,/**/edgesThis,addCoo,mapAddCoo);
378 * This method builds 'this' from its descending conn stored in crude mode (MEDCoupling).
379 * Descending conn is in FORTRAN relative mode in order to give the
380 * orientation of edge (see buildDescendingConnectivity2() method).
381 * See appendEdgeFromCrudeDataArray() for params description.
383 void QuadraticPolygon::buildFromCrudeDataArray(const std::map<int,INTERP_KERNEL::Node *>& mapp, bool isQuad, const int *nodalBg, const double *coords,
384 const int *descBg, const int *descEnd, const std::vector<std::vector<int> >& intersectEdges)
386 std::size_t nbOfSeg=std::distance(descBg,descEnd);
387 for(std::size_t i=0;i<nbOfSeg;i++)
389 appendEdgeFromCrudeDataArray(i,mapp,isQuad,nodalBg,coords,descBg,descEnd,intersectEdges);
393 void QuadraticPolygon::appendEdgeFromCrudeDataArray(std::size_t edgePos, const std::map<int,INTERP_KERNEL::Node *>& mapp, bool isQuad,
394 const int *nodalBg, const double *coords,
395 const int *descBg, const int *descEnd, const std::vector<std::vector<int> >& intersectEdges)
399 bool direct=descBg[edgePos]>0;
400 int edgeId=abs(descBg[edgePos])-1; // back to C indexing mode
401 const std::vector<int>& subEdge=intersectEdges[edgeId];
402 std::size_t nbOfSubEdges=subEdge.size()/2;
403 for(std::size_t j=0;j<nbOfSubEdges;j++)
404 appendSubEdgeFromCrudeDataArray(0,j,direct,edgeId,subEdge,mapp);
408 std::size_t nbOfSeg=std::distance(descBg,descEnd);
409 const double *st=coords+2*(nodalBg[edgePos]);
410 INTERP_KERNEL::Node *st0=new INTERP_KERNEL::Node(st[0],st[1]);
411 const double *endd=coords+2*(nodalBg[(edgePos+1)%nbOfSeg]);
412 INTERP_KERNEL::Node *endd0=new INTERP_KERNEL::Node(endd[0],endd[1]);
413 const double *middle=coords+2*(nodalBg[edgePos+nbOfSeg]);
414 INTERP_KERNEL::Node *middle0=new INTERP_KERNEL::Node(middle[0],middle[1]);
416 e1=new EdgeLin(st0,middle0);
417 e2=new EdgeLin(middle0,endd0);
418 SegSegIntersector inters(*e1,*e2);
419 bool colinearity=inters.areColinears();
420 delete e1; delete e2;
422 bool direct=descBg[edgePos]>0;
423 int edgeId=abs(descBg[edgePos])-1;
424 const std::vector<int>& subEdge=intersectEdges[edgeId];
425 std::size_t nbOfSubEdges=subEdge.size()/2;
428 for(std::size_t j=0;j<nbOfSubEdges;j++)
429 appendSubEdgeFromCrudeDataArray(0,j,direct,edgeId,subEdge,mapp);
433 Edge *e=new EdgeArcCircle(st0,middle0,endd0,true);
434 for(std::size_t j=0;j<nbOfSubEdges;j++)
435 appendSubEdgeFromCrudeDataArray(e,j,direct,edgeId,subEdge,mapp);
438 st0->decrRef(); endd0->decrRef(); middle0->decrRef();
442 void QuadraticPolygon::appendSubEdgeFromCrudeDataArray(Edge *baseEdge, std::size_t j, bool direct, int edgeId, const std::vector<int>& subEdge, const std::map<int,INTERP_KERNEL::Node *>& mapp)
444 std::size_t nbOfSubEdges=subEdge.size()/2;
446 {//it is not a quadratic subedge
447 Node *start=(*mapp.find(direct?subEdge[2*j]:subEdge[2*nbOfSubEdges-2*j-1])).second;
448 Node *end=(*mapp.find(direct?subEdge[2*j+1]:subEdge[2*nbOfSubEdges-2*j-2])).second;
449 ElementaryEdge *e=ElementaryEdge::BuildEdgeFromStartEndDir(true,start,end);
453 {//it is a quadratic subedge
454 Node *start=(*mapp.find(direct?subEdge[2*j]:subEdge[2*nbOfSubEdges-2*j-1])).second;
455 Node *end=(*mapp.find(direct?subEdge[2*j+1]:subEdge[2*nbOfSubEdges-2*j-2])).second;
456 Edge *ee=baseEdge->buildEdgeLyingOnMe(start,end);
457 ElementaryEdge *eee=new ElementaryEdge(ee,true);
463 * This method builds from descending conn of a quadratic polygon stored in crude mode (MEDCoupling). Descending conn is in FORTRAN relative mode in order to give the
464 * orientation of edge.
466 void QuadraticPolygon::buildFromCrudeDataArray2(const std::map<int,INTERP_KERNEL::Node *>& mapp, bool isQuad, const int *nodalBg, const double *coords, const int *descBg, const int *descEnd, const std::vector<std::vector<int> >& intersectEdges,
467 const INTERP_KERNEL::QuadraticPolygon& pol1, const int *descBg1, const int *descEnd1, const std::vector<std::vector<int> >& intersectEdges1,
468 const std::vector< std::vector<int> >& colinear1,
469 std::map<int,std::vector<INTERP_KERNEL::ElementaryEdge *> >& alreadyExistingIn2)
471 std::size_t nbOfSeg=std::distance(descBg,descEnd);
472 for(std::size_t i=0;i<nbOfSeg;i++)//loop over all edges of pol2
474 bool direct=descBg[i]>0;
475 int edgeId=abs(descBg[i])-1;//current edge id of pol2
476 std::map<int,std::vector<INTERP_KERNEL::ElementaryEdge *> >::const_iterator it1=alreadyExistingIn2.find(descBg[i]),it2=alreadyExistingIn2.find(-descBg[i]);
477 if(it1!=alreadyExistingIn2.end() || it2!=alreadyExistingIn2.end())
479 bool sameDir=(it1!=alreadyExistingIn2.end());
480 const std::vector<INTERP_KERNEL::ElementaryEdge *>& edgesAlreadyBuilt=sameDir?(*it1).second:(*it2).second;
483 for(std::vector<INTERP_KERNEL::ElementaryEdge *>::const_iterator it3=edgesAlreadyBuilt.begin();it3!=edgesAlreadyBuilt.end();it3++)
485 Edge *ee=(*it3)->getPtr(); ee->incrRef();
486 pushBack(new ElementaryEdge(ee,(*it3)->getDirection()));
491 for(std::vector<INTERP_KERNEL::ElementaryEdge *>::const_reverse_iterator it4=edgesAlreadyBuilt.rbegin();it4!=edgesAlreadyBuilt.rend();it4++)
493 Edge *ee=(*it4)->getPtr(); ee->incrRef();
494 pushBack(new ElementaryEdge(ee,!(*it4)->getDirection()));
499 bool directos=colinear1[edgeId].empty();
500 std::vector<std::pair<int,std::pair<bool,int> > > idIns1;
503 {// if the current edge of pol2 has one or more colinear edges part into pol1
504 const std::vector<int>& c=colinear1[edgeId];
505 std::size_t nbOfEdgesIn1=std::distance(descBg1,descEnd1);
506 for(std::size_t j=0;j<nbOfEdgesIn1;j++)
508 int edgeId1=abs(descBg1[j])-1;
509 if(std::find(c.begin(),c.end(),edgeId1)!=c.end())
511 idIns1.push_back(std::pair<int,std::pair<bool,int> >(edgeId1,std::pair<bool,int>(descBg1[j]>0,offset1)));// it exists an edge into pol1 given by tuple (idIn1,direct1) that is colinear at edge 'edgeId' in pol2
512 //std::pair<edgeId1); direct1=descBg1[j]>0;
514 offset1+=intersectEdges1[edgeId1].size()/2;//offset1 is used to find the INTERP_KERNEL::Edge * instance into pol1 that will be part of edge into pol2
516 directos=idIns1.empty();
519 {//no subpart of edge 'edgeId' of pol2 is in pol1 so let's operate the same thing that QuadraticPolygon::buildFromCrudeDataArray method
520 std::size_t oldSz=_sub_edges.size();
521 appendEdgeFromCrudeDataArray(i,mapp,isQuad,nodalBg,coords,descBg,descEnd,intersectEdges);
522 std::size_t newSz=_sub_edges.size();
523 std::size_t zeSz=newSz-oldSz;
524 alreadyExistingIn2[descBg[i]].resize(zeSz);
525 std::list<ElementaryEdge *>::const_reverse_iterator it5=_sub_edges.rbegin();
526 for(std::size_t p=0;p<zeSz;p++,it5++)
527 alreadyExistingIn2[descBg[i]][zeSz-p-1]=*it5;
530 {//there is subpart of edge 'edgeId' of pol2 inside pol1
531 const std::vector<int>& subEdge=intersectEdges[edgeId];
532 std::size_t nbOfSubEdges=subEdge.size()/2;
533 for(std::size_t j=0;j<nbOfSubEdges;j++)
535 int idBg=direct?subEdge[2*j]:subEdge[2*nbOfSubEdges-2*j-1];
536 int idEnd=direct?subEdge[2*j+1]:subEdge[2*nbOfSubEdges-2*j-2];
537 bool direction11,found=false;
538 bool direct1;//store if needed the direction in 1
540 std::size_t nbOfSubEdges1;
541 for(std::vector<std::pair<int,std::pair<bool,int> > >::const_iterator it=idIns1.begin();it!=idIns1.end() && !found;it++)
543 int idIn1=(*it).first;//store if needed the cell id in 1
544 direct1=(*it).second.first;
545 offset1=(*it).second.second;
546 const std::vector<int>& subEdge1PossiblyAlreadyIn1=intersectEdges1[idIn1];
547 nbOfSubEdges1=subEdge1PossiblyAlreadyIn1.size()/2;
549 for(std::size_t k=0;k<nbOfSubEdges1 && !found;k++)
550 {//perform a loop on all subedges of pol1 that includes edge 'edgeId' of pol2. For the moment we iterate only on subedges of ['idIn1']... To improve
551 if(subEdge1PossiblyAlreadyIn1[2*k]==idBg && subEdge1PossiblyAlreadyIn1[2*k+1]==idEnd)
552 { direction11=true; found=true; }
553 else if(subEdge1PossiblyAlreadyIn1[2*k]==idEnd && subEdge1PossiblyAlreadyIn1[2*k+1]==idBg)
554 { direction11=false; found=true; }
560 {//the current subedge of edge 'edgeId' of pol2 is not a part of the colinear edge 'idIn1' of pol1 -> build new Edge instance
561 //appendEdgeFromCrudeDataArray(j,mapp,isQuad,nodalBg,coords,descBg,descEnd,intersectEdges);
562 Node *start=(*mapp.find(idBg)).second;
563 Node *end=(*mapp.find(idEnd)).second;
564 ElementaryEdge *e=ElementaryEdge::BuildEdgeFromStartEndDir(true,start,end);
566 alreadyExistingIn2[descBg[i]].push_back(e);
569 {//the current subedge of edge 'edgeId' of pol2 is part of the colinear edge 'idIn1' of pol1 -> reuse Edge instance of pol1
570 ElementaryEdge *e=pol1[offset1+(direct1?offset2:nbOfSubEdges1-offset2-1)];
571 Edge *ee=e->getPtr();
573 ElementaryEdge *e2=new ElementaryEdge(ee,!(direct1^direction11));
575 alreadyExistingIn2[descBg[i]].push_back(e2);
583 * Method expected to be called on pol2. Every params not suffixed by numbered are supposed to refer to pol2 (this).
584 * Method to find edges that are ON.
586 void QuadraticPolygon::updateLocOfEdgeFromCrudeDataArray2(const int *descBg, const int *descEnd, const std::vector<std::vector<int> >& intersectEdges,
587 const INTERP_KERNEL::QuadraticPolygon& pol1, const int *descBg1, const int *descEnd1,
588 const std::vector<std::vector<int> >& intersectEdges1, const std::vector< std::vector<int> >& colinear1) const
590 std::size_t nbOfSeg=std::distance(descBg,descEnd);
591 for(std::size_t i=0;i<nbOfSeg;i++)//loop over all edges of pol2
593 bool direct=descBg[i]>0;
594 int edgeId=abs(descBg[i])-1;//current edge id of pol2
595 const std::vector<int>& c=colinear1[edgeId];
598 const std::vector<int>& subEdge=intersectEdges[edgeId];
599 std::size_t nbOfSubEdges=subEdge.size()/2;
601 std::size_t nbOfEdgesIn1=std::distance(descBg1,descEnd1);
603 for(std::size_t j=0;j<nbOfEdgesIn1;j++)
605 int edgeId1=abs(descBg1[j])-1;
606 if(std::find(c.begin(),c.end(),edgeId1)!=c.end())
608 for(std::size_t k=0;k<nbOfSubEdges;k++)
610 int idBg=direct?subEdge[2*k]:subEdge[2*nbOfSubEdges-2*k-1];
611 int idEnd=direct?subEdge[2*k+1]:subEdge[2*nbOfSubEdges-2*k-2];
613 bool direct1=descBg1[j]>0;
614 const std::vector<int>& subEdge1PossiblyAlreadyIn1=intersectEdges1[idIn1];
615 std::size_t nbOfSubEdges1=subEdge1PossiblyAlreadyIn1.size()/2;
618 for(std::size_t kk=0;kk<nbOfSubEdges1 && !found;kk++)
620 found=(subEdge1PossiblyAlreadyIn1[2*kk]==idBg && subEdge1PossiblyAlreadyIn1[2*kk+1]==idEnd) || (subEdge1PossiblyAlreadyIn1[2*kk]==idEnd && subEdge1PossiblyAlreadyIn1[2*kk+1]==idBg);
626 ElementaryEdge *e=pol1[offset1+(direct1?offset2:nbOfSubEdges1-offset2-1)];
627 e->getPtr()->declareOn();
631 offset1+=intersectEdges1[edgeId1].size()/2;//offset1 is used to find the INTERP_KERNEL::Edge * instance into pol1 that will be part of edge into pol2
636 void QuadraticPolygon::appendCrudeData(const std::map<INTERP_KERNEL::Node *,int>& mapp, double xBary, double yBary, double fact, int offset, std::vector<double>& addCoordsQuadratic, std::vector<int>& conn, std::vector<int>& connI) const
639 bool presenceOfQuadratic=presenceOfQuadraticEdge();
640 conn.push_back(presenceOfQuadratic?NORM_QPOLYG:NORM_POLYGON);
641 for(std::list<ElementaryEdge *>::const_iterator it=_sub_edges.begin();it!=_sub_edges.end();it++)
644 tmp=(*it)->getStartNode();
645 std::map<INTERP_KERNEL::Node *,int>::const_iterator it1=mapp.find(tmp);
646 conn.push_back((*it1).second);
649 if(presenceOfQuadratic)
652 int off=offset+((int)addCoordsQuadratic.size())/2;
653 for(std::list<ElementaryEdge *>::const_iterator it=_sub_edges.begin();it!=_sub_edges.end();it++,j++,nbOfNodesInPg++)
655 INTERP_KERNEL::Node *node=(*it)->getPtr()->buildRepresentantOfMySelf();
656 node->unApplySimilarity(xBary,yBary,fact);
657 addCoordsQuadratic.push_back((*node)[0]);
658 addCoordsQuadratic.push_back((*node)[1]);
659 conn.push_back(off+j);
663 connI.push_back(connI.back()+nbOfNodesInPg+1);
667 * This method make the hypothesis that \a this and \a other are split at the minimum into edges that are fully IN, OUT or ON.
668 * This method returns newly created polygons in \a conn and \a connI and the corresponding ids ( \a idThis, \a idOther) are stored respectively into \a nbThis and \a nbOther.
669 * @param [in,out] edgesThis, parameter that keep informed the caller about the edges in this not shared by the result of intersection of \a this with \a other
670 * @param [in,out] edgesBoundaryOther, parameter that stores all edges in result of intersection that are not
672 void QuadraticPolygon::buildPartitionsAbs(QuadraticPolygon& other, std::set<INTERP_KERNEL::Edge *>& edgesThis, std::set<INTERP_KERNEL::Edge *>& edgesBoundaryOther,
673 const std::map<INTERP_KERNEL::Node *,int>& mapp, int idThis, int idOther, int offset,
674 std::vector<double>& addCoordsQuadratic, std::vector<int>& conn, std::vector<int>& connI,
675 std::vector<int>& nbThis, std::vector<int>& nbOther)
677 double xBaryBB, yBaryBB;
678 double fact=normalizeExt(&other, xBaryBB, yBaryBB);
679 //Locate \a this relative to \a other (edges of \a this, aka \a pol1 are marked as IN or OUT)
680 other.performLocatingOperationSlow(*this); // without any assumption
681 std::vector<QuadraticPolygon *> res=buildIntersectionPolygons(*this,other);
682 for(std::vector<QuadraticPolygon *>::iterator it=res.begin();it!=res.end();it++)
684 (*it)->appendCrudeData(mapp,xBaryBB,yBaryBB,fact,offset,addCoordsQuadratic,conn,connI);
685 INTERP_KERNEL::IteratorOnComposedEdge it1(*it);
686 for(it1.first();!it1.finished();it1.next())
688 Edge *e=it1.current()->getPtr();
689 if(edgesThis.find(e)!=edgesThis.end())
693 if(edgesBoundaryOther.find(e)!=edgesBoundaryOther.end())
694 edgesBoundaryOther.erase(e);
696 edgesBoundaryOther.insert(e);
699 nbThis.push_back(idThis);
700 nbOther.push_back(idOther);
703 unApplyGlobalSimilarityExt(other,xBaryBB,yBaryBB,fact);
707 * Warning This method is \b NOT const. 'this' and 'other' are modified after call of this method.
708 * 'other' is a QuadraticPolygon of \b non closed edges.
710 double QuadraticPolygon::intersectWithAbs1D(QuadraticPolygon& other, bool& isColinear)
712 double ret = 0., xBaryBB, yBaryBB;
713 double fact = normalize(&other, xBaryBB, yBaryBB);
715 QuadraticPolygon cpyOfThis(*this);
716 QuadraticPolygon cpyOfOther(other);
718 SplitPolygonsEachOther(cpyOfThis, cpyOfOther, nbOfSplits);
719 //At this point cpyOfThis and cpyOfOther have been splited at maximum edge so that in/out can been done.
720 performLocatingOperation(cpyOfOther);
722 for(std::list<ElementaryEdge *>::const_iterator it=cpyOfOther._sub_edges.begin();it!=cpyOfOther._sub_edges.end();it++)
724 switch((*it)->getLoc())
728 ret += fabs((*it)->getPtr()->getCurveLength());
734 ret += fabs((*it)->getPtr()->getCurveLength());
746 * Warning contrary to intersectWith method this method is \b NOT const. 'this' and 'other' are modified after call of this method.
748 double QuadraticPolygon::intersectWithAbs(QuadraticPolygon& other, double* barycenter)
750 double ret=0.,bary[2],area,xBaryBB,yBaryBB;
751 barycenter[0] = barycenter[1] = 0.;
752 double fact=normalize(&other,xBaryBB,yBaryBB);
753 std::vector<QuadraticPolygon *> polygs=intersectMySelfWith(other);
754 for(std::vector<QuadraticPolygon *>::iterator iter=polygs.begin();iter!=polygs.end();iter++)
756 area=fabs((*iter)->getArea());
757 (*iter)->getBarycenter(bary);
760 barycenter[0] += bary[0]*area;
761 barycenter[1] += bary[1]*area;
763 if ( ret > std::numeric_limits<double>::min() )
765 barycenter[0]=barycenter[0]/ret*fact+xBaryBB;
766 barycenter[1]=barycenter[1]/ret*fact+yBaryBB;
769 return ret*fact*fact;
773 * \b WARNING this method is const and other is const too. \b BUT location of Edges in 'this' and 'other' are nevertheless modified.
774 * This is possible because loc attribute in Edge class is mutable.
775 * This implies that if 'this' or/and 'other' are reused for intersect* method initLocations has to be called on each of this/them.
777 double QuadraticPolygon::intersectWith(const QuadraticPolygon& other) const
780 std::vector<QuadraticPolygon *> polygs=intersectMySelfWith(other);
781 for(std::vector<QuadraticPolygon *>::iterator iter=polygs.begin();iter!=polygs.end();iter++)
783 ret+=fabs((*iter)->getArea());
790 * \b WARNING this method is const and other is const too. \b BUT location of Edges in 'this' and 'other' are nevertheless modified.
791 * This is possible because loc attribute in Edge class is mutable.
792 * This implies that if 'this' or/and 'other' are reused for intersect* method initLocations has to be called on each of this/them.
794 double QuadraticPolygon::intersectWith(const QuadraticPolygon& other, double* barycenter) const
796 double ret=0., bary[2];
797 barycenter[0] = barycenter[1] = 0.;
798 std::vector<QuadraticPolygon *> polygs=intersectMySelfWith(other);
799 for(std::vector<QuadraticPolygon *>::iterator iter=polygs.begin();iter!=polygs.end();iter++)
801 double area = fabs((*iter)->getArea());
802 (*iter)->getBarycenter(bary);
805 barycenter[0] += bary[0]*area;
806 barycenter[1] += bary[1]*area;
808 if ( ret > std::numeric_limits<double>::min() )
810 barycenter[0] /= ret;
811 barycenter[1] /= ret;
817 * \b WARNING this method is const and other is const too. \b BUT location of Edges in 'this' and 'other' are nevertheless modified.
818 * This is possible because loc attribute in Edge class is mutable.
819 * This implies that if 'this' or/and 'other' are reused for intersect* method initLocations has to be called on each of this/them.
821 void QuadraticPolygon::intersectForPerimeter(const QuadraticPolygon& other, double& perimeterThisPart, double& perimeterOtherPart, double& perimeterCommonPart) const
823 perimeterThisPart=0.; perimeterOtherPart=0.; perimeterCommonPart=0.;
824 QuadraticPolygon cpyOfThis(*this);
825 QuadraticPolygon cpyOfOther(other); int nbOfSplits=0;
826 SplitPolygonsEachOther(cpyOfThis,cpyOfOther,nbOfSplits);
827 performLocatingOperation(cpyOfOther);
828 other.performLocatingOperation(cpyOfThis);
829 cpyOfThis.dispatchPerimeterExcl(perimeterThisPart,perimeterCommonPart);
830 cpyOfOther.dispatchPerimeterExcl(perimeterOtherPart,perimeterCommonPart);
831 perimeterCommonPart/=2.;
835 * \b WARNING this method is const and other is const too. \b BUT location of Edges in 'this' and 'other' are nevertheless modified.
836 * This is possible because loc attribute in Edge class is mutable.
837 * This implies that if 'this' or/and 'other' are reused for intersect* method initLocations has to be called on each of this/them.
839 * polThis.size()==this->size() and polOther.size()==other.size().
840 * For each ElementaryEdge of 'this', the corresponding contribution in resulting polygon is in 'polThis'.
841 * For each ElementaryEdge of 'other', the corresponding contribution in resulting polygon is in 'polOther'.
842 * As consequence common part are counted twice (in polThis \b and in polOther).
844 void QuadraticPolygon::intersectForPerimeterAdvanced(const QuadraticPolygon& other, std::vector< double >& polThis, std::vector< double >& polOther) const
846 polThis.resize(size());
847 polOther.resize(other.size());
848 IteratorOnComposedEdge it1(const_cast<QuadraticPolygon *>(this));
850 for(it1.first();!it1.finished();it1.next(),edgeId++)
852 ElementaryEdge* curE1=it1.current();
853 QuadraticPolygon cpyOfOther(other);
854 QuadraticPolygon tmp;
855 tmp.pushBack(curE1->clone());
857 SplitPolygonsEachOther(tmp,cpyOfOther,tmp2);
858 other.performLocatingOperation(tmp);
859 tmp.dispatchPerimeter(polThis[edgeId]);
862 IteratorOnComposedEdge it2(const_cast<QuadraticPolygon *>(&other));
864 for(it2.first();!it2.finished();it2.next(),edgeId++)
866 ElementaryEdge* curE2=it2.current();
867 QuadraticPolygon cpyOfThis(*this);
868 QuadraticPolygon tmp;
869 tmp.pushBack(curE2->clone());
871 SplitPolygonsEachOther(tmp,cpyOfThis,tmp2);
872 performLocatingOperation(tmp);
873 tmp.dispatchPerimeter(polOther[edgeId]);
879 * numberOfCreatedPointsPerEdge is resized to the number of edges of 'this'.
880 * This method returns in ordered maner the number of newly created points per edge.
881 * This method performs a split process between 'this' and 'other' that gives the result PThis.
882 * Then for each edges of 'this' this method counts how many edges in Pthis have the same id.
884 void QuadraticPolygon::intersectForPoint(const QuadraticPolygon& other, std::vector< int >& numberOfCreatedPointsPerEdge) const
886 numberOfCreatedPointsPerEdge.resize(size());
887 IteratorOnComposedEdge it1(const_cast<QuadraticPolygon *>(this));
889 for(it1.first();!it1.finished();it1.next(),edgeId++)
891 ElementaryEdge* curE1=it1.current();
892 QuadraticPolygon cpyOfOther(other);
893 QuadraticPolygon tmp;
894 tmp.pushBack(curE1->clone());
896 SplitPolygonsEachOther(tmp,cpyOfOther,tmp2);
897 numberOfCreatedPointsPerEdge[edgeId]=tmp.recursiveSize()-1;
902 * \b WARNING this method is const and other is const too. \b BUT location of Edges in 'this' and 'other' are nevertheless modified.
903 * This is possible because loc attribute in Edge class is mutable.
904 * This implies that if 'this' or/and 'other' are reused for intersect* method initLocations has to be called on each of this/them.
905 * This method is currently not used by any high level functionality.
907 std::vector<QuadraticPolygon *> QuadraticPolygon::intersectMySelfWith(const QuadraticPolygon& other) const
909 QuadraticPolygon cpyOfThis(*this);
910 QuadraticPolygon cpyOfOther(other); int nbOfSplits=0;
911 SplitPolygonsEachOther(cpyOfThis,cpyOfOther,nbOfSplits);
912 //At this point cpyOfThis and cpyOfOther have been splited at maximum edge so that in/out can been done.
913 performLocatingOperation(cpyOfOther);
914 return other.buildIntersectionPolygons(cpyOfOther, cpyOfThis);
918 * This method is typically the first step of boolean operations between pol1 and pol2.
919 * This method perform the minimal splitting so that at the end each edges constituting pol1 are fully either IN or OUT or ON.
920 * @param pol1 IN/OUT param that is equal to 'this' when called.
922 void QuadraticPolygon::SplitPolygonsEachOther(QuadraticPolygon& pol1, QuadraticPolygon& pol2, int& nbOfSplits)
924 IteratorOnComposedEdge it1(&pol1),it2(&pol2);
926 ComposedEdge *c1=new ComposedEdge;
927 ComposedEdge *c2=new ComposedEdge;
928 for(it2.first();!it2.finished();it2.next())
930 ElementaryEdge* curE2=it2.current();
931 if(!curE2->isThereStartPoint())
934 it1=curE2->getIterator();
935 for(;!it1.finished();)
938 ElementaryEdge* curE1=it1.current();
939 merge.clear(); nbOfSplits++;
940 if(curE1->getPtr()->intersectWith(curE2->getPtr(),merge,*c1,*c2))
942 if(!curE1->getDirection()) c1->reverse();
943 if(!curE2->getDirection()) c2->reverse();
944 UpdateNeighbours(merge,it1,it2,c1,c2);
945 //Substitution of simple edge by sub-edges.
946 delete curE1; // <-- destroying simple edge coming from pol1
947 delete curE2; // <-- destroying simple edge coming from pol2
948 it1.insertElemEdges(c1,true);// <-- 2nd param is true to go next.
949 it2.insertElemEdges(c2,false);// <-- 2nd param is false to avoid to go next.
952 it1.assignMySelfToAllElems(c2);//To avoid that others
960 UpdateNeighbours(merge,it1,it2,curE1,curE2);
969 void QuadraticPolygon::performLocatingOperation(QuadraticPolygon& pol1) const
971 IteratorOnComposedEdge it(&pol1);
972 TypeOfEdgeLocInPolygon loc=FULL_ON_1;
973 for(it.first();!it.finished();it.next())
975 ElementaryEdge *cur=it.current();
976 loc=cur->locateFullyMySelf(*this,loc);//*this=pol2=other
980 void QuadraticPolygon::performLocatingOperationSlow(QuadraticPolygon& pol2) const
982 IteratorOnComposedEdge it(&pol2);
983 for(it.first();!it.finished();it.next())
985 ElementaryEdge *cur=it.current();
986 cur->locateFullyMySelfAbsolute(*this);
991 * Given 2 polygons \a pol1 and \a pol2 (localized) the resulting polygons are returned.
993 * this : pol1 simplified.
994 * @param [in] pol1 pol1 split.
995 * @param [in] pol2 pol2 split.
997 std::vector<QuadraticPolygon *> QuadraticPolygon::buildIntersectionPolygons(const QuadraticPolygon& pol1, const QuadraticPolygon& pol2) const
999 std::vector<QuadraticPolygon *> ret;
1000 // Extract from pol1, and pol1 only, all consecutive edges.
1001 // pol1Zip contains concatenated pieces of pol1 which are part of the resulting intersecting cell being built.
1002 std::list<QuadraticPolygon *> pol1Zip=pol1.zipConsecutiveInSegments();
1003 if(!pol1Zip.empty())
1004 ClosePolygons(pol1Zip,*this,pol2,ret);
1006 {//borders of pol1 do not cross pol2,and pol1 borders are outside of pol2. That is to say, either pol1 and pol2
1007 //do not overlap or pol2 is fully inside pol1. So in the first case no intersection, in the other case
1008 //the intersection is pol2.
1009 ElementaryEdge *e1FromPol2=pol2[0];
1010 TypeOfEdgeLocInPolygon loc=FULL_ON_1;
1011 loc=e1FromPol2->locateFullyMySelf(*this,loc);
1013 ret.push_back(new QuadraticPolygon(pol2));
1019 * Returns parts of potentially non closed-polygons. Each returned polygons are not mergeable.
1020 * this : pol1 split and localized.
1022 std::list<QuadraticPolygon *> QuadraticPolygon::zipConsecutiveInSegments() const
1024 std::list<QuadraticPolygon *> ret;
1025 IteratorOnComposedEdge it(const_cast<QuadraticPolygon *>(this));
1026 int nbOfTurns=recursiveSize();
1028 if(!it.goToNextInOn(false,i,nbOfTurns))
1034 QuadraticPolygon *tmp1=new QuadraticPolygon;
1035 TypeOfEdgeLocInPolygon loc=it.current()->getLoc();
1036 while(loc!=FULL_OUT_1 && i<nbOfTurns)
1038 ElementaryEdge *tmp3=it.current()->clone();
1039 tmp1->pushBack(tmp3);
1041 loc=it.current()->getLoc();
1048 ret.push_back(tmp1);
1049 it.goToNextInOn(true,i,nbOfTurns);
1055 * @param [in] pol1zip is a list of set of edges (=an opened polygon) coming from split polygon 1.
1056 * @param [in] pol1 should be considered as pol1Simplified.
1057 * @param [in] pol2 is split pol2.
1058 * @param [out] results the resulting \b CLOSED polygons.
1060 void QuadraticPolygon::ClosePolygons(std::list<QuadraticPolygon *>& pol1Zip, const QuadraticPolygon& pol1, const QuadraticPolygon& pol2,
1061 std::vector<QuadraticPolygon *>& results)
1063 bool directionKnownInPol2=false;
1064 bool directionInPol2;
1065 for(std::list<QuadraticPolygon *>::iterator iter=pol1Zip.begin();iter!=pol1Zip.end();)
1067 // Build incrementally the full closed cells from the consecutive line parts already built in pol1Zip.
1068 // At the end of the process the item currently iterated has been totally completed (start_node=end_node)
1069 // This process can produce several cells.
1070 if((*iter)->completed())
1072 results.push_back(*iter);
1073 directionKnownInPol2=false;
1074 iter=pol1Zip.erase(iter);
1077 if(!directionKnownInPol2)
1079 if(!(*iter)->haveIAChanceToBeCompletedBy(pol1,pol2,directionInPol2))
1080 { delete *iter; iter=pol1Zip.erase(iter); continue; }
1082 directionKnownInPol2=true;
1084 std::list<QuadraticPolygon *>::iterator iter2=iter; iter2++;
1085 // Fill as much as possible the current iterate (=a part of pol1) with consecutive pieces from pol2:
1086 std::list<QuadraticPolygon *>::iterator iter3=(*iter)->fillAsMuchAsPossibleWith(pol2,iter2,pol1Zip.end(),directionInPol2);
1087 // and now add a full connected piece from pol1Zip:
1088 if(iter3!=pol1Zip.end())
1090 (*iter)->pushBack(*iter3);
1092 pol1Zip.erase(iter3);
1098 * 'this' is expected to be set of edges (not closed) of pol1 split.
1100 bool QuadraticPolygon::haveIAChanceToBeCompletedBy(const QuadraticPolygon& pol1NotSplitted, const QuadraticPolygon& pol2Splitted, bool& direction) const
1102 IteratorOnComposedEdge it2(const_cast<QuadraticPolygon *>(&pol2Splitted));
1104 Node *n=getEndNode();
1105 ElementaryEdge *cur=it2.current();
1106 for(it2.first();!it2.finished() && !found;)
1109 found=(cur->getStartNode()==n);
1114 throw Exception("Internal error: polygons incompatible with each others. Should never happen!");
1115 //Ok we found correspondence between this and pol2. Searching for right direction to close polygon.
1116 ElementaryEdge *e=_sub_edges.back();
1117 if(e->getLoc()==FULL_ON_1)
1119 if(e->getPtr()==cur->getPtr())
1124 Node *repr=cur->getPtr()->buildRepresentantOfMySelf();
1125 bool ret=pol1NotSplitted.isInOrOut(repr);
1132 Node *repr=cur->getPtr()->buildRepresentantOfMySelf();
1133 bool ret=pol1NotSplitted.isInOrOut(repr);
1139 direction=cur->locateFullyMySelfAbsolute(pol1NotSplitted)==FULL_IN_1;
1144 * This method fills as much as possible \a this (a sub-part of pol1 split) with edges of \a pol2Splitted.
1146 std::list<QuadraticPolygon *>::iterator QuadraticPolygon::fillAsMuchAsPossibleWith(const QuadraticPolygon& pol2Splitted,
1147 std::list<QuadraticPolygon *>::iterator iStart,
1148 std::list<QuadraticPolygon *>::iterator iEnd,
1151 IteratorOnComposedEdge it1(const_cast<QuadraticPolygon *>(&pol2Splitted));
1153 Node *n=getEndNode();
1154 ElementaryEdge *cur1;
1155 for(it1.first();!it1.finished() && !found;)
1158 found=(cur1->getStartNode()==n);
1165 int szMax(pol2Splitted.size()+1),ii(0); // protection against aggressive users of IntersectMeshes using invalid input meshes ...
1166 std::list<QuadraticPolygon *>::iterator ret;
1168 { // Stack (consecutive) edges of pol1 into the result (no need to care about ordering, edges from pol1 are already consecutive)
1170 ElementaryEdge *tmp=cur1->clone();
1174 nodeToTest=tmp->getEndNode();
1175 direction?it1.nextLoop():it1.previousLoop();
1176 ret=CheckInList(nodeToTest,iStart,iEnd);
1181 while(ret==iEnd && ii<szMax);
1182 if(ii==szMax)// here a protection against aggressive users of IntersectMeshes of invalid input meshes
1183 throw INTERP_KERNEL::Exception("QuadraticPolygon::fillAsMuchAsPossibleWith : Something is invalid with input polygons !");
1187 std::list<QuadraticPolygon *>::iterator QuadraticPolygon::CheckInList(Node *n, std::list<QuadraticPolygon *>::iterator iStart,
1188 std::list<QuadraticPolygon *>::iterator iEnd)
1190 for(std::list<QuadraticPolygon *>::iterator iter=iStart;iter!=iEnd;iter++)
1191 if((*iter)->isNodeIn(n))
1196 void QuadraticPolygon::ComputeResidual(const QuadraticPolygon& pol1, const std::set<Edge *>& notUsedInPol1, const std::set<Edge *>& edgesInPol2OnBoundary,
1197 const std::map<INTERP_KERNEL::Node *,int>& mapp, int offset, int idThis,
1198 std::vector<double>& addCoordsQuadratic, std::vector<int>& conn,
1199 std::vector<int>& connI, std::vector<int>& nb1, std::vector<int>& nb2)
1201 // Initialise locations on pol1. Remember that edges found in 'notUsedInPol1' are also part of the edges forming pol1.
1202 pol1.initLocations();
1203 for(std::set<Edge *>::const_iterator it1=notUsedInPol1.begin();it1!=notUsedInPol1.end();it1++)
1204 { (*it1)->initLocs(); (*it1)->declareOn(); }
1205 for(std::set<Edge *>::const_iterator it2=edgesInPol2OnBoundary.begin();it2!=edgesInPol2OnBoundary.end();it2++)
1206 { (*it2)->initLocs(); (*it2)->declareIn(); }
1208 std::set<Edge *> notUsedInPol1L(notUsedInPol1);
1209 IteratorOnComposedEdge itPol1(const_cast<QuadraticPolygon *>(&pol1));
1211 std::list<QuadraticPolygon *> pol1Zip;
1212 // If none of the edges of pol1 was consumed by the rebuilding process, we can directly take pol1 as it is to form a cell:
1213 if(pol1.size()==(int)notUsedInPol1.size() && edgesInPol2OnBoundary.empty())
1215 pol1.appendCrudeData(mapp,0.,0.,1.,offset,addCoordsQuadratic,conn,connI); nb1.push_back(idThis); nb2.push_back(-1);
1218 // Zip consecutive edges found in notUsedInPol1L and which are not overlapping with boundary edge from edgesInPol2OnBoundary:
1219 while(!notUsedInPol1L.empty())
1221 // If all nodes are IN or ON (why ON?) then error
1222 for(int i=0;i<sz && (itPol1.current()->getStartNode()->getLoc()!=IN_1 || itPol1.current()->getLoc()!=FULL_ON_1);i++)
1224 if(itPol1.current()->getStartNode()->getLoc()!=IN_1 || itPol1.current()->getLoc()!=FULL_ON_1)
1225 throw INTERP_KERNEL::Exception("Presence of a target polygon fully included in source polygon ! The partition of this leads to a non simply connex cell (with hole) ! Impossible ! Such resulting cell cannot be stored in MED cell format !");
1226 QuadraticPolygon *tmp1=new QuadraticPolygon;
1229 Edge *ee=itPol1.current()->getPtr();
1230 if(ee->getLoc()==FULL_ON_1)
1232 ee->incrRef(); notUsedInPol1L.erase(ee);
1233 tmp1->pushBack(new ElementaryEdge(ee,itPol1.current()->getDirection()));
1237 while(itPol1.current()->getStartNode()->getLoc()!=IN_1 && !notUsedInPol1L.empty());
1238 pol1Zip.push_back(tmp1);
1242 std::list<QuadraticPolygon *> retPolsUnderContruction;
1243 std::list<Edge *> edgesInPol2OnBoundaryL(edgesInPol2OnBoundary.begin(),edgesInPol2OnBoundary.end());
1244 std::map<QuadraticPolygon *, std::list<QuadraticPolygon *> > pol1ZipConsumed; // for memory management only.
1245 std::size_t maxNbOfTurn=edgesInPol2OnBoundaryL.size(),nbOfTurn=0,iiMNT=0;
1246 for(std::list<QuadraticPolygon *>::const_iterator itMNT=pol1Zip.begin();itMNT!=pol1Zip.end();itMNT++,iiMNT++)
1247 nbOfTurn+=(*itMNT)->size();
1248 maxNbOfTurn=maxNbOfTurn*nbOfTurn; maxNbOfTurn*=maxNbOfTurn;
1249 // [ABN] at least 3 turns for very small cases (typically one (quad) edge against one (quad or lin) edge forming a new cell)!
1250 maxNbOfTurn = maxNbOfTurn<3 ? 3 : maxNbOfTurn;
1252 while(nbOfTurn<maxNbOfTurn && ((!pol1Zip.empty() || !edgesInPol2OnBoundaryL.empty())))
1254 // retPolsUnderConstruction initially empty -> see if(!pol1Zip.empty()) below ...
1255 for(std::list<QuadraticPolygon *>::iterator itConstr=retPolsUnderContruction.begin();itConstr!=retPolsUnderContruction.end();)
1257 if((*itConstr)->getStartNode()==(*itConstr)->getEndNode()) // reconstruction of a cell is finished
1262 Node *curN=(*itConstr)->getEndNode();
1263 bool smthHappened=false;
1264 // Complete a partially reconstructed polygon with boundary edges by matching nodes:
1265 for(std::list<Edge *>::iterator it2=edgesInPol2OnBoundaryL.begin();it2!=edgesInPol2OnBoundaryL.end();)
1267 if(curN==(*it2)->getStartNode())
1268 { (*it2)->incrRef(); (*itConstr)->pushBack(new ElementaryEdge(*it2,true)); curN=(*it2)->getEndNode(); smthHappened=true; it2=edgesInPol2OnBoundaryL.erase(it2); }
1269 else if(curN==(*it2)->getEndNode())
1270 { (*it2)->incrRef(); (*itConstr)->pushBack(new ElementaryEdge(*it2,false)); curN=(*it2)->getStartNode(); smthHappened=true; it2=edgesInPol2OnBoundaryL.erase(it2); }
1276 for(std::list<QuadraticPolygon *>::iterator itZip=pol1Zip.begin();itZip!=pol1Zip.end();)
1278 if(curN==(*itZip)->getStartNode()) // we found a matching piece to append in pol1Zip. Append all of it to the current polygon being reconstr
1280 for(std::list<ElementaryEdge *>::const_iterator it4=(*itZip)->_sub_edges.begin();it4!=(*itZip)->_sub_edges.end();it4++)
1281 { (*it4)->getPtr()->incrRef(); bool dir=(*it4)->getDirection(); (*itConstr)->pushBack(new ElementaryEdge((*it4)->getPtr(),dir)); }
1282 pol1ZipConsumed[*itConstr].push_back(*itZip);
1283 curN=(*itZip)->getEndNode();
1284 itZip=pol1Zip.erase(itZip); // one zipped piece has been consumed
1285 break; // we can stop here, pieces in pol1Zip are not connected, by definition.
1293 for(std::list<ElementaryEdge *>::const_iterator it5=(*itConstr)->_sub_edges.begin();it5!=(*itConstr)->_sub_edges.end();it5++)
1295 Edge *ee=(*it5)->getPtr();
1296 if(edgesInPol2OnBoundary.find(ee)!=edgesInPol2OnBoundary.end())
1297 edgesInPol2OnBoundaryL.push_back(ee);
1299 for(std::list<QuadraticPolygon *>::iterator it6=pol1ZipConsumed[*itConstr].begin();it6!=pol1ZipConsumed[*itConstr].end();it6++)
1300 pol1Zip.push_front(*it6);
1301 pol1ZipConsumed.erase(*itConstr);
1303 itConstr=retPolsUnderContruction.erase(itConstr);
1306 if(!pol1Zip.empty()) // the filling process of retPolsUnderConstruction starts here
1308 QuadraticPolygon *tmp=new QuadraticPolygon;
1309 QuadraticPolygon *first=*(pol1Zip.begin());
1310 for(std::list<ElementaryEdge *>::const_iterator it4=first->_sub_edges.begin();it4!=first->_sub_edges.end();it4++)
1311 { (*it4)->getPtr()->incrRef(); bool dir=(*it4)->getDirection(); tmp->pushBack(new ElementaryEdge((*it4)->getPtr(),dir)); }
1312 pol1ZipConsumed[tmp].push_back(first);
1313 retPolsUnderContruction.push_back(tmp);
1314 pol1Zip.erase(pol1Zip.begin());
1318 if(nbOfTurn==maxNbOfTurn)
1320 std::ostringstream oss; oss << "Error during reconstruction of residual of cell ! It appears that either source or/and target mesh is/are not conform !";
1321 oss << " Number of turns is = " << nbOfTurn << " !";
1322 throw INTERP_KERNEL::Exception(oss.str().c_str());
1324 // Convert to integer connectivity:
1325 for(std::list<QuadraticPolygon *>::iterator itConstr=retPolsUnderContruction.begin();itConstr!=retPolsUnderContruction.end();itConstr++)
1327 if((*itConstr)->getStartNode()==(*itConstr)->getEndNode()) // take only fully closed reconstructed polygon (?? might there be others??)
1329 (*itConstr)->appendCrudeData(mapp,0.,0.,1.,offset,addCoordsQuadratic,conn,connI); nb1.push_back(idThis); nb2.push_back(-1);
1330 for(std::list<QuadraticPolygon *>::iterator it6=pol1ZipConsumed[*itConstr].begin();it6!=pol1ZipConsumed[*itConstr].end();it6++)
1336 std::ostringstream oss; oss << "Internal error during reconstruction of residual of cell! Non fully closed polygon built!";
1337 throw INTERP_KERNEL::Exception(oss.str().c_str());