1 // Copyright (C) 2007-2014 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 "InterpKernelGeo2DEdge.hxx"
22 #include "InterpKernelGeo2DEdgeLin.hxx"
23 #include "InterpKernelGeo2DEdgeInfLin.hxx"
24 //#include "EdgeParabol.hxx"
25 #include "InterpKernelGeo2DEdgeArcCircle.hxx"
26 #include "InterpKernelGeo2DComposedEdge.hxx"
27 #include "InterpKernelException.hxx"
31 using namespace INTERP_KERNEL;
33 MergePoints::MergePoints():_ass1Start1(0),_ass1End1(0),_ass1Start2(0),_ass1End2(0),
34 _ass2Start1(0),_ass2End1(0),_ass2Start2(0),_ass2End2(0)
38 void MergePoints::start1Replaced()
40 unsigned nbOfAsso=getNumberOfAssociations();
47 void MergePoints::end1Replaced()
49 unsigned nbOfAsso=getNumberOfAssociations();
56 void MergePoints::start1OnStart2()
58 unsigned nbOfAsso=getNumberOfAssociations();
71 void MergePoints::start1OnEnd2()
73 unsigned nbOfAsso=getNumberOfAssociations();
86 void MergePoints::end1OnStart2()
88 unsigned nbOfAsso=getNumberOfAssociations();
101 void MergePoints::end1OnEnd2()
103 unsigned nbOfAsso=getNumberOfAssociations();
116 bool MergePoints::isStart1(unsigned rk) const
124 bool MergePoints::isEnd1(unsigned rk) const
132 bool MergePoints::isStart2(unsigned rk) const
140 bool MergePoints::isEnd2(unsigned rk) const
148 void MergePoints::clear()
150 _ass1Start1=0;_ass1End1=0;_ass1Start2=0;_ass1End2=0;
151 _ass2Start1=0;_ass2End1=0;_ass2Start2=0;_ass2End2=0;
154 unsigned MergePoints::getNumberOfAssociations() const
157 unsigned subTot=_ass1Start1+_ass1End1+_ass1Start2+_ass1End2;
160 subTot=_ass2Start1+_ass2End1+_ass2Start2+_ass2End2;
166 void MergePoints::PushInMap(int key, int value, std::map<int,int>& mergedNodes)
168 if(key!=-1 && value!=-1)
169 mergedNodes[key]=value;
172 void MergePoints::updateMergedNodes(int e1Start, int e1End, int e2Start, int e2End, std::map<int,int>& mergedNodes)
174 unsigned subTot(_ass1Start1+_ass1End1+_ass1Start2+_ass1End2);
177 if(_ass1Start1 && _ass1Start2)
178 PushInMap(e2Start,e1Start,mergedNodes);
179 if(_ass1Start1 && _ass1End2)
180 PushInMap(e2End,e1Start,mergedNodes);
181 if(_ass1End1 && _ass1Start2)
182 PushInMap(e2Start,e1End,mergedNodes);
183 if(_ass1End1 && _ass1End2)
184 PushInMap(e2End,e1End,mergedNodes);
186 subTot=_ass2Start1+_ass2End1+_ass2Start2+_ass2End2;
189 if(_ass2Start1 && _ass2Start2)
190 PushInMap(e2Start,e1Start,mergedNodes);
191 if(_ass2Start1 && _ass2End2)
192 PushInMap(e2End,e1Start,mergedNodes);
193 if(_ass2End1 && _ass2Start2)
194 PushInMap(e2Start,e1End,mergedNodes);
195 if(_ass2End1 && _ass2End2)
196 PushInMap(e2End,e1End,mergedNodes);
200 IntersectElement::IntersectElement(double val1, double val2, bool start1, bool end1, bool start2, bool end2, Node *node
201 , const Edge& e1, const Edge& e2, bool keepOrder):_1S(keepOrder?start1:start2),
202 _1E(keepOrder?end1:end2),
203 _2S(keepOrder?start2:start1),
204 _2E(keepOrder?end2:end1),
205 _chararct_val_for_e1(keepOrder?val1:val2),
206 _chararct_val_for_e2(keepOrder?val2:val1),
207 _node(node),_loc_of_node(node->getLoc()),_e1(keepOrder?e1:e2),
212 IntersectElement::IntersectElement(const IntersectElement& other):_1S(other._1S),_1E(other._1E),_2S(other._2S),_2E(other._2E),
213 _chararct_val_for_e1(other._chararct_val_for_e1),
214 _chararct_val_for_e2(other._chararct_val_for_e2),_node(other._node),
215 _loc_of_node(other._loc_of_node),_e1(other._e1), _e2(other._e2)
221 IntersectElement& IntersectElement::operator=(const IntersectElement& other)
223 _1S=other._1S;_1E=other._1E; _2S=other._2S; _2E=other._2E;
224 _chararct_val_for_e1=other._chararct_val_for_e1;
225 _chararct_val_for_e2=other._chararct_val_for_e2;
226 setNode(other._node);
230 bool IntersectElement::operator<(const IntersectElement& other) const
232 return _e1.isLower(_chararct_val_for_e1,other._chararct_val_for_e1);
235 IntersectElement::~IntersectElement()
244 bool IntersectElement::isOnMergedExtremity() const
246 if( (_1S && _2S) || (_1S && _2E) || (_1E && _2S) || (_1E && _2E) )
252 * To call if isOnMergedExtremity returned true.
254 void IntersectElement::performMerging(MergePoints& commonNode) const
258 if(_e1.changeStartNodeWith(_e2.getStartNode()))
260 _e2.getStartNode()->declareOnLim();
261 commonNode.start1OnStart2();
266 if(_e1.changeStartNodeWith(_e2.getEndNode()))
268 _e2.getEndNode()->declareOnLim();
269 commonNode.start1OnEnd2();
274 if(_e1.changeEndNodeWith(_e2.getStartNode()))
276 _e2.getStartNode()->declareOnLim();
277 commonNode.end1OnStart2();
282 if(_e1.changeEndNodeWith(_e2.getEndNode()))
284 _e2.getEndNode()->declareOnLim();
285 commonNode.end1OnEnd2();
291 * This methode is const because 'node' is supposed to be equal geomitrically to _node.
293 void IntersectElement::setNode(Node *node) const
298 ((Node *)_node)->decrRef();
299 (const_cast<IntersectElement *>(this))->_node=node;
305 bool IntersectElement::isLowerOnOther(const IntersectElement& other) const
307 return _e2.isLower(_chararct_val_for_e2,other._chararct_val_for_e2);
310 unsigned IntersectElement::isOnExtrForAnEdgeAndInForOtherEdge() const
312 if(( _1S && !(_2S || _2E) ) || ( _1E && !(_2S || _2E) ))
314 if(_1S && !(_2S || _2E))
315 setNode(_e1.getStartNode());
317 setNode(_e1.getEndNode());
318 if(_e2.isIn(_chararct_val_for_e2))
322 if(( _2S && !(_1S || _1E) ) || ( _2E && !(_1S || _1E)))
324 if(_2S && !(_1S || _1E))
325 setNode(_e2.getStartNode());
327 setNode(_e2.getEndNode());
328 if(_e1.isIn(_chararct_val_for_e1))
335 bool IntersectElement::isIncludedByBoth() const
337 return _e1.isIn(_chararct_val_for_e1) && _e2.isIn(_chararct_val_for_e2);
340 bool EdgeIntersector::intersect(const Bounds *whereToFind, std::vector<Node *>& newNodes, bool& order, MergePoints& commonNode)
342 std::list< IntersectElement > listOfIntesc=getIntersectionsCharacteristicVal();
343 std::list< IntersectElement >::iterator iter;
344 for(iter=listOfIntesc.begin();iter!=listOfIntesc.end();)
346 if((*iter).isOnMergedExtremity())
348 (*iter).performMerging(commonNode);
349 iter=listOfIntesc.erase(iter);
352 unsigned tmp=(*iter).isOnExtrForAnEdgeAndInForOtherEdge();
353 if(tmp==IntersectElement::LIMIT_ALONE)
355 iter=listOfIntesc.erase(iter);
358 else if(tmp==IntersectElement::LIMIT_ON)
364 if(!(*iter).isIncludedByBoth())
366 iter=listOfIntesc.erase(iter);
372 if(listOfIntesc.size()==0)
374 if(listOfIntesc.size()==1)
377 newNodes.push_back(listOfIntesc.front().getNodeAndReleaseIt());
381 std::vector<IntersectElement> vecOfIntesc(listOfIntesc.begin(),listOfIntesc.end());
382 listOfIntesc.clear();
383 sort(vecOfIntesc.begin(),vecOfIntesc.end());
384 for(std::vector<IntersectElement>::iterator iterV=vecOfIntesc.begin();iterV!=vecOfIntesc.end();iterV++)
385 newNodes.push_back((*iterV).getNodeAndReleaseIt());
386 order=vecOfIntesc.front().isLowerOnOther(vecOfIntesc.back());
392 * Locates 'node' regarding edge this->_e1. If node is located close to (with distant lt epsilon) start or end point of _e1,
393 * 'node' takes its place. In this case 'obvious' is set to true and 'commonNode' stores information of merge point and finally 'where' is set.
394 * Furthermore 'node' is declared as ON LIMIT to indicate in locating process that an absolute location computation will have to be done.
395 * If 'node' is not close to start or end point of _e1, 'obvious' is set to false and 'commonNode' and 'where' are let unchanged.
397 void EdgeIntersector::obviousCaseForCurvAbscisse(Node *node, TypeOfLocInEdge& where, MergePoints& commonNode, bool& obvious) const
400 if(node->isEqual(*_e1.getStartNode()))
403 if(_e1.changeStartNodeWith(node))
405 commonNode.start1Replaced();
406 node->declareOnLim();
410 if(node->isEqual(*_e1.getEndNode()))
413 if(_e1.changeEndNodeWith(node))
415 commonNode.end1Replaced();
416 node->declareOnLim();
423 Edge::Edge(double sX, double sY, double eX, double eY):_cnt(1),_loc(FULL_UNKNOWN),_start(new Node(sX,sY)),_end(new Node(eX,eY))
436 bool ret=(--_cnt==0);
442 void Edge::declareOn() const
444 if(_loc==FULL_UNKNOWN)
452 void Edge::declareIn() const
454 if(_loc==FULL_UNKNOWN)
462 void Edge::declareOut() const
464 if(_loc==FULL_UNKNOWN)
467 _start->declareOut();
472 void Edge::fillXfigStreamForLoc(std::ostream& stream) const
477 stream << '2';//Green
480 stream << '1';//Bleue
490 bool Edge::changeStartNodeWith(Node *otherStartNode) const
492 if(_start==otherStartNode)
494 if(_start->isEqual(*otherStartNode))
496 ((const_cast<Edge *>(this))->_start)->decrRef();//un-const cast Ok thanks to 2 lines above.
497 ((const_cast<Edge *>(this))->_start)=otherStartNode;
504 bool Edge::changeStartNodeWithAndKeepTrack(Node *otherStartNode, std::vector<Node *>& track) const
506 if(_start==otherStartNode)
508 if(_start->isEqualAndKeepTrack(*otherStartNode,track))
510 ((const_cast<Edge *>(this))->_start)->decrRef();//un-const cast Ok thanks to 2 lines above.
511 ((const_cast<Edge *>(this))->_start)=otherStartNode;
512 otherStartNode->incrRef();
518 bool Edge::changeEndNodeWith(Node *otherEndNode) const
520 if(_end==otherEndNode)
522 if(_end->isEqual(*otherEndNode))
524 ((const_cast<Edge *>(this))->_end)->decrRef();
525 ((const_cast<Edge *>(this))->_end)=otherEndNode;
532 bool Edge::changeEndNodeWithAndKeepTrack(Node *otherEndNode, std::vector<Node *>& track) const
534 if(_end==otherEndNode)
536 if(_end->isEqualAndKeepTrack(*otherEndNode,track))
538 ((const_cast<Edge *>(this))->_end)->decrRef();
539 ((const_cast<Edge *>(this))->_end)=otherEndNode;
540 otherEndNode->incrRef();
547 * Precondition : 'start' and 'end' are lying on the same curve than 'this'.
548 * Add in vec the sub edge lying on this.
549 * If 'start' is equal (by pointer) to '_end' and 'end' is equal to '_end' too nothing is added.
550 * If 'start' is equal (by pointer) to '_start' and 'end' is equal to '_start' too nothing is added.
551 * If 'start' is equal (by pointer) to '_start' and 'end' is equal to '_end' this is added in vec.
553 void Edge::addSubEdgeInVector(Node *start, Node *end, ComposedEdge& vec) const
555 if((start==_start && end==_start) || (start==_end && end==_end))
557 if(start==_start && end==_end)
560 vec.pushBack(const_cast<Edge *>(this));
563 vec.pushBack(buildEdgeLyingOnMe(start,end,true));
567 * Retrieves a vector 'vectOutput' that is normal to 'this'. 'vectOutput' is normalized.
569 void Edge::getNormalVector(double *vectOutput) const
571 std::copy((const double *)(*_end),(const double *)(*_end)+2,vectOutput);
572 std::transform(vectOutput,vectOutput+2,(const double *)(*_start),vectOutput,std::minus<double>());
573 double norm=1./Node::norm(vectOutput);
574 std::transform(vectOutput,vectOutput+2,vectOutput,bind2nd(std::multiplies<double>(),norm));
575 double tmp=vectOutput[0];
576 vectOutput[0]=vectOutput[1];
580 Edge *Edge::BuildEdgeFrom3Points(const double *start, const double *middle, const double *end)
582 Node *b(new Node(start[0],start[1])),*m(new Node(middle[0],middle[1])),*e(new Node(end[0],end[1]));
583 EdgeLin *e1(new EdgeLin(b,m)),*e2(new EdgeLin(m,e));
584 SegSegIntersector inters(*e1,*e2); bool colinearity=inters.areColinears(); delete e1; delete e2;
587 ret=new EdgeLin(b,e);
589 ret=new EdgeArcCircle(b,m,e);
590 b->decrRef(); m->decrRef(); e->decrRef();
594 Edge *Edge::BuildEdgeFrom(Node *start, Node *end)
596 return new EdgeLin(start,end);
599 Edge *Edge::BuildFromXfigLine(std::istream& str)
604 return new EdgeLin(str);
606 return new EdgeArcCircle(str);
609 std::cerr << "Unknown line found...";
615 * \param other The Edge with which we are going to intersect.
616 * \param commonNode Output. The common nodes found during operation of intersecting.
617 * \param outVal1 Output filled in case true is returned. It specifies the new or not new edges by which 'this' is replaced after intersecting op.
618 * \param outVal2 Output filled in case true is returned. It specifies the new or not new edges by which 'other' is replaced after intersecting op.
619 * return true if the intersection between this.
621 bool Edge::intersectWith(const Edge *other, MergePoints& commonNode,
622 ComposedEdge& outVal1, ComposedEdge& outVal2) const
625 Bounds *merge=_bounds.nearlyAmIIntersectingWith(other->getBounds());
630 EdgeIntersector *intersector=BuildIntersectorWith(this,other);
631 ret=Intersect(this,other,intersector,merge,commonNode,outVal1,outVal2);
636 bool Edge::IntersectOverlapped(const Edge *f1, const Edge *f2, EdgeIntersector *intersector, MergePoints& commonNode,
637 ComposedEdge& outValForF1, ComposedEdge& outValForF2)
639 bool rev=intersector->haveTheySameDirection();
640 Node *f2Start=f2->getNode(rev?START:END);
641 Node *f2End=f2->getNode(rev?END:START);
642 TypeOfLocInEdge place1, place2;
643 intersector->getPlacements(f2Start,f2End,place1,place2,commonNode);
644 int codeForIntersectionCase=CombineCodes(place1,place2);
645 return SplitOverlappedEdges(f1,f2,f2Start,f2End,rev,codeForIntersectionCase,outValForF1,outValForF2);
649 * Perform 1D linear interpolation. Warning distrib1 and distrib2 are expected to be in ascending mode.
651 void Edge::Interpolate1DLin(const std::vector<double>& distrib1, const std::vector<double>& distrib2, std::map<int, std::map<int,double> >& result)
653 int nbOfV1=distrib1.size()-1;
654 int nbOfV2=distrib2.size()-1;
655 Node *n1=new Node(0.,0.); Node *n3=new Node(0.,0.);
656 Node *n2=new Node(0.,0.); Node *n4=new Node(0.,0.);
657 MergePoints commonNode;
658 for(int i=0;i<nbOfV1;i++)
660 std::vector<double>::const_iterator iter=find_if(distrib2.begin()+1,distrib2.end(),bind2nd(std::greater_equal<double>(),distrib1[i]));
661 if(iter!=distrib2.end())
663 for(int j=(iter-1)-distrib2.begin();j<nbOfV2;j++)
665 if(distrib2[j]<=distrib1[i+1])
667 EdgeLin *e1=new EdgeLin(n1,n2); EdgeLin *e2=new EdgeLin(n3,n4);
668 n1->setNewCoords(distrib1[i],0.); n2->setNewCoords(distrib1[i+1],0.);
669 n3->setNewCoords(distrib2[j],0.); n4->setNewCoords(distrib2[j+1],0.);
670 ComposedEdge *f1=new ComposedEdge;
671 ComposedEdge *f2=new ComposedEdge;
672 SegSegIntersector inters(*e1,*e2);
674 inters.areOverlappedOrOnlyColinears(0,b1,b2);
675 if(IntersectOverlapped(e1,e2,&inters,commonNode,*f1,*f2))
677 result[i][j]=f1->getCommonLengthWith(*f2)/e1->getCurveLength();
679 ComposedEdge::Delete(f1); ComposedEdge::Delete(f2);
680 e1->decrRef(); e2->decrRef();
685 n1->decrRef(); n2->decrRef(); n3->decrRef(); n4->decrRef();
688 EdgeIntersector *Edge::BuildIntersectorWith(const Edge *e1, const Edge *e2)
690 EdgeIntersector *ret=0;
691 const EdgeLin *tmp1=0;
692 const EdgeArcCircle *tmp2=0;
693 unsigned char type1=e1->getTypeOfFunc();
694 e1->dynCastFunction(tmp1,tmp2);
695 unsigned char type2=e2->getTypeOfFunc();
696 e2->dynCastFunction(tmp1,tmp2);
700 case 1:// Intersection seg/seg
701 ret=new SegSegIntersector((const EdgeLin &)(*e1),(const EdgeLin &)(*e2));
703 case 5:// Intersection seg/arc of circle
704 ret=new ArcCSegIntersector(*tmp2,*tmp1,tmp2==e1);
706 case 4:// Intersection arc/arc of circle
707 ret=new ArcCArcCIntersector((const EdgeArcCircle &)(*e1),(const EdgeArcCircle &)(*e2));
710 //Should never happen
711 throw Exception("A non managed association of edge has been detected. Go work for intersection computation implementation.");
717 * See Node::applySimilarity to see signification of params.
719 void Edge::applySimilarity(double xBary, double yBary, double dimChar)
721 _bounds.applySimilarity(xBary,yBary,dimChar);
724 void Edge::unApplySimilarity(double xBary, double yBary, double dimChar)
726 _bounds.unApplySimilarity(xBary,yBary,dimChar);
729 bool Edge::Intersect(const Edge *f1, const Edge *f2, EdgeIntersector *intersector, const Bounds *whereToFind, MergePoints& commonNode,
730 ComposedEdge& outValForF1, ComposedEdge& outValForF2)
732 bool obviousNoIntersection;
734 intersector->areOverlappedOrOnlyColinears(whereToFind,obviousNoIntersection,areOverlapped);
736 return IntersectOverlapped(f1,f2,intersector,commonNode,outValForF1,outValForF2);
737 if(obviousNoIntersection)
739 std::vector<Node *> newNodes;
741 if(intersector->intersect(whereToFind,newNodes,order,commonNode))
744 throw Exception("Internal error occured - error in intersector implementation!");// This case should never happen
745 std::vector<Node *>::iterator iter=newNodes.begin();
746 std::vector<Node *>::reverse_iterator iterR=newNodes.rbegin();
747 f1->addSubEdgeInVector(f1->getStartNode(),*iter,outValForF1);
748 f2->addSubEdgeInVector(f2->getStartNode(),order?*iter:*iterR,outValForF2);
749 for(std::vector<Node *>::iterator iter2=newNodes.begin();iter2!=newNodes.end();iter2++,iterR++)
751 if((iter2+1)==newNodes.end())
753 f1->addSubEdgeInVector(*iter2,f1->getEndNode(),outValForF1);
755 f2->addSubEdgeInVector(order?*iter2:*iterR,f2->getEndNode(),outValForF2);
759 f1->addSubEdgeInVector(*iter2,*(iter2+1),outValForF1);
761 f2->addSubEdgeInVector(order?*iter2:*iterR,order?*(iter2+1):*(iterR+1),outValForF2);
766 else//no intersection inside whereToFind
770 int Edge::CombineCodes(TypeOfLocInEdge code1, TypeOfLocInEdge code2)
773 ret*=OFFSET_FOR_TYPEOFLOCINEDGE;
779 * This method splits e1 and e2 into pieces as much sharable as possible. The precondition to the call of this method
780 * is that e1 and e2 have been declared as overlapped by corresponding intersector built from e1 and e2 type.
782 * @param nS start node of e2 with the SAME DIRECTION as e1. The pointer nS should be equal to start node of e2 or to its end node.
783 * @param nE end node of e2 with the SAME DIRECTION as e1. The pointer nE should be equal to start node of e2 or to its end node.
784 * @param direction is param that specifies if e2 and e1 have same directions (true) or opposed (false).
785 * @param code is the code returned by method Edge::combineCodes.
787 bool Edge::SplitOverlappedEdges(const Edge *e1, const Edge *e2, Node *nS, Node *nE, bool direction, int code,
788 ComposedEdge& outVal1, ComposedEdge& outVal2)
793 case OUT_BEFORE*OFFSET_FOR_TYPEOFLOCINEDGE+START: // OUT_BEFORE - START
794 case OUT_BEFORE*OFFSET_FOR_TYPEOFLOCINEDGE+OUT_BEFORE: // OUT_BEFORE - OUT_BEFORE
795 case OUT_AFTER*OFFSET_FOR_TYPEOFLOCINEDGE+OUT_AFTER: // OUT_AFTER - OUT_AFTER
796 case END*OFFSET_FOR_TYPEOFLOCINEDGE+OUT_AFTER: // END - OUT_AFTER
797 case END*OFFSET_FOR_TYPEOFLOCINEDGE+START: // END - START
799 case INSIDE*OFFSET_FOR_TYPEOFLOCINEDGE+OUT_AFTER: // INSIDE - OUT_AFTER
800 outVal1.pushBack(e1->buildEdgeLyingOnMe(e1->getStartNode(),nS,true));
801 tmp=e1->buildEdgeLyingOnMe(nS,e1->getEndNode()); tmp->incrRef();
802 outVal1.pushBack(tmp);
804 outVal2.setValueAt(direction?0:1,tmp,direction); tmp->declareOn();
805 outVal2.setValueAt(direction?1:0,e1->buildEdgeLyingOnMe(e1->getEndNode(),nE,direction));
807 case INSIDE*OFFSET_FOR_TYPEOFLOCINEDGE+INSIDE: // INSIDE - INSIDE
809 if(!e2->isIn(e2->getCharactValue(*(e1->getStartNode()))))
811 e2->incrRef(); e2->incrRef();
813 outVal1.setValueAt(0,e1->buildEdgeLyingOnMe(e1->getStartNode(),nS));
814 outVal1.setValueAt(1,const_cast<Edge*>(e2),direction);
815 outVal1.setValueAt(2,e1->buildEdgeLyingOnMe(nE,e1->getEndNode()));
816 outVal2.pushBack(const_cast<Edge*>(e2)); e2->declareOn();
823 tmp=e1->buildEdgeLyingOnMe(e1->getStartNode(),nE); tmp->incrRef(); tmp->declareOn();
824 outVal1.setValueAt(0,tmp,true); outVal2.setValueAt(direction?2:0,tmp,direction);
825 outVal1.setValueAt(1,e1->buildEdgeLyingOnMe(nE,nS));
826 tmp=e1->buildEdgeLyingOnMe(nS,e1->getEndNode()); tmp->incrRef(); tmp->declareOn();
827 outVal1.setValueAt(2,tmp,true); outVal2.setValueAt(direction?0:2,tmp,direction);
828 tmp=e1->buildEdgeLyingOnMe(e1->getEndNode(),e1->getStartNode());
829 outVal2.setValueAt(1,tmp,direction);
833 case OUT_BEFORE*OFFSET_FOR_TYPEOFLOCINEDGE+INSIDE: // OUT_BEFORE - INSIDE
835 tmp=e1->buildEdgeLyingOnMe(e1->getStartNode(),nE); tmp->incrRef();
836 outVal1.pushBack(tmp);
837 outVal1.pushBack(e1->buildEdgeLyingOnMe(nE,e1->getEndNode()));
839 outVal2.setValueAt(direction?0:1,e1->buildEdgeLyingOnMe(nS,e1->getStartNode(),direction));
840 outVal2.setValueAt(direction?1:0,tmp,direction); tmp->declareOn();
843 case OUT_BEFORE*OFFSET_FOR_TYPEOFLOCINEDGE+OUT_AFTER: // OUT_BEFORE - OUT_AFTER
845 e1->incrRef(); e1->incrRef();
846 outVal1.pushBack(const_cast<Edge*>(e1));
848 outVal2.setValueAt(direction?0:2,e1->buildEdgeLyingOnMe(nS,e1->getStartNode(),direction));
849 outVal2.setValueAt(1,const_cast<Edge*>(e1),direction); e1->declareOn();
850 outVal2.setValueAt(direction?2:0,e1->buildEdgeLyingOnMe(e1->getEndNode(),nE,direction));
853 case START*OFFSET_FOR_TYPEOFLOCINEDGE+END: // START - END
855 e1->incrRef(); e1->incrRef();
856 outVal1.pushBack(const_cast<Edge*>(e1));
857 outVal2.pushBack(const_cast<Edge*>(e1),direction); e1->declareOn();
860 case START*OFFSET_FOR_TYPEOFLOCINEDGE+OUT_AFTER: // START - OUT_AFTER
862 e1->incrRef(); e1->incrRef();
863 outVal1.pushBack(const_cast<Edge*>(e1));
865 outVal2.setValueAt(direction?0:1,const_cast<Edge*>(e1),direction); e1->declareOn();
866 outVal2.setValueAt(direction?1:0,e1->buildEdgeLyingOnMe(e1->getEndNode(),nE,direction));
869 case INSIDE*OFFSET_FOR_TYPEOFLOCINEDGE+END: // INSIDE - END
871 e2->incrRef(); e2->incrRef();
872 outVal1.pushBack(e1->buildEdgeLyingOnMe(e1->getStartNode(),nS,true));
873 outVal1.pushBack(const_cast<Edge*>(e2),direction);
874 outVal2.pushBack(const_cast<Edge*>(e2)); e2->declareOn();
877 case OUT_BEFORE*OFFSET_FOR_TYPEOFLOCINEDGE+END: // OUT_BEFORE - END
879 e1->incrRef(); e1->incrRef();
880 outVal1.pushBack(const_cast<Edge*>(e1));
882 outVal2.setValueAt(direction?0:1,e1->buildEdgeLyingOnMe(nS,e1->getStartNode(),direction));
883 outVal2.setValueAt(direction?1:0,const_cast<Edge*>(e1),direction); e1->declareOn();
886 case START*OFFSET_FOR_TYPEOFLOCINEDGE+INSIDE: // START - INSIDE
888 e2->incrRef(); e2->incrRef();
889 outVal1.pushBack(const_cast<Edge*>(e2),direction);
890 outVal1.pushBack(e1->buildEdgeLyingOnMe(nE,e1->getEndNode()));
891 outVal2.pushBack(const_cast<Edge*>(e2)); e2->declareOn();
894 case INSIDE*OFFSET_FOR_TYPEOFLOCINEDGE+START: // INSIDE - START
898 tmp=e1->buildEdgeLyingOnMe(nS,e1->getEndNode()); tmp->incrRef(); tmp->declareOn();
899 outVal1.setValueAt(0,e1->buildEdgeLyingOnMe(e1->getStartNode(),nS));
900 outVal1.setValueAt(1,tmp);
901 outVal2.setValueAt(direction?0:1,tmp,direction);
902 outVal2.setValueAt(direction?1:0,e1->buildEdgeLyingOnMe(e1->getEndNode(),nE,direction));
905 case END*OFFSET_FOR_TYPEOFLOCINEDGE+INSIDE: // END - INSIDE
909 tmp=e1->buildEdgeLyingOnMe(e1->getStartNode(),nE); tmp->incrRef(); tmp->declareOn();
910 outVal1.setValueAt(0,tmp);
911 outVal1.setValueAt(1,e1->buildEdgeLyingOnMe(nE,e1->getEndNode()));
912 outVal2.setValueAt(direction?0:1,e1->buildEdgeLyingOnMe(e1->getEndNode(),e1->getStartNode(),direction));
913 outVal2.setValueAt(direction?1:0,tmp,direction);
917 throw Exception("Unexpected situation of overlapping edges : internal error occurs ! ");
921 bool Edge::isEqual(const Edge& other) const
923 return _start->isEqual(*other._start) && _end->isEqual(*other._end);
926 inline bool eqpair(const std::pair<double,Node *>& p1, const std::pair<double,Node *>& p2)
928 return fabs(p1.first-p2.first)<QUADRATIC_PLANAR::_precision;
932 * This method takes in input nodes in \a subNodes (using \a coo)
934 * \param [in,out] subNodes to be sorted
935 * \return true if a reordering was necessary false if not.
937 bool Edge::sortSubNodesAbs(const double *coo, std::vector<int>& subNodes)
940 b.prepareForAggregation();
941 b.aggregate(getBounds());
943 double dimChar(b.getCaracteristicDim());
944 b.getBarycenter(xBary,yBary);
945 applySimilarity(xBary,yBary,dimChar);
946 _start->applySimilarity(xBary,yBary,dimChar);
947 _end->applySimilarity(xBary,yBary,dimChar);
949 std::size_t sz(subNodes.size()),i(0);
950 std::vector< std::pair<double,Node *> > an2(sz);
951 std::map<Node *, int> m;
952 for(std::vector<int>::const_iterator it=subNodes.begin();it!=subNodes.end();it++,i++)
954 Node *n(new Node(coo[2*(*it)],coo[2*(*it)+1]));
955 n->applySimilarity(xBary,yBary,dimChar);
957 an2[i]=std::pair<double,Node *>(getCharactValueBtw0And1(*n),n);
959 std::sort(an2.begin(),an2.end());
964 int id(m[an2[i].second]);
966 { subNodes[i]=id; ret=true; }
969 for(std::map<INTERP_KERNEL::Node *,int>::const_iterator it2=m.begin();it2!=m.end();it2++)
970 (*it2).first->decrRef();
975 * Sort nodes so that they all lie consecutively on the edge that has been cut.
977 void Edge::sortIdsAbs(const std::vector<INTERP_KERNEL::Node *>& addNodes, const std::map<INTERP_KERNEL::Node *, int>& mapp1,
978 const std::map<INTERP_KERNEL::Node *, int>& mapp2, std::vector<int>& edgesThis)
981 b.prepareForAggregation();
982 b.aggregate(getBounds());
984 double dimChar=b.getCaracteristicDim();
985 b.getBarycenter(xBary,yBary);
986 for(std::vector<Node *>::const_iterator iter=addNodes.begin();iter!=addNodes.end();iter++)
987 (*iter)->applySimilarity(xBary,yBary,dimChar);
988 applySimilarity(xBary,yBary,dimChar);
989 _start->applySimilarity(xBary,yBary,dimChar);
990 _end->applySimilarity(xBary,yBary,dimChar);
991 std::size_t sz=addNodes.size();
992 std::vector< std::pair<double,Node *> > an2(sz);
993 for(std::size_t i=0;i<sz;i++)
994 an2[i]=std::pair<double,Node *>(getCharactValueBtw0And1(*addNodes[i]),addNodes[i]);
995 std::sort(an2.begin(),an2.end());
996 int startId=(*mapp1.find(_start)).second;
997 int endId=(*mapp1.find(_end)).second;
998 std::vector<int> tmpp;
999 std::vector< std::pair<double,Node *> >::const_iterator itend=std::unique(an2.begin(),an2.end(),eqpair);
1000 for(std::vector< std::pair<double,Node *> >::const_iterator it=an2.begin();it!=itend;it++)
1002 int idd=(*mapp2.find((*it).second)).second;
1003 if((*it).first<QUADRATIC_PLANAR::_precision)
1008 if((*it).first>1-QUADRATIC_PLANAR::_precision)
1013 tmpp.push_back(idd);
1015 std::vector<int> tmpp2(tmpp.size()+2);
1017 std::copy(tmpp.begin(),tmpp.end(),tmpp2.begin()+1);
1018 tmpp2[tmpp.size()+1]=endId;
1019 std::vector<int>::iterator itt=std::unique(tmpp2.begin(),tmpp2.end());
1020 tmpp2.resize(std::distance(tmpp2.begin(),itt));
1021 int nbOfEdges=tmpp2.size()-1;
1022 for(int i=0;i<nbOfEdges;i++)
1024 edgesThis.push_back(tmpp2[i]);
1025 edgesThis.push_back(tmpp2[i+1]);