X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketcherPrs%2FSketcherPrs_Tangent.cpp;h=bf998d8120b5e8fe1c17ed3d932ab56567ee012c;hb=2cb8023bec0da9fc7b138da0a467bca74d4b825c;hp=8e10430b39393a5a2e71957bf5840cc0d11bbb6b;hpb=ab07e66b9ed5d4e520f56bbe8a3e44312b05a89b;p=modules%2Fshaper.git diff --git a/src/SketcherPrs/SketcherPrs_Tangent.cpp b/src/SketcherPrs/SketcherPrs_Tangent.cpp index 8e10430b3..bf998d812 100644 --- a/src/SketcherPrs/SketcherPrs_Tangent.cpp +++ b/src/SketcherPrs/SketcherPrs_Tangent.cpp @@ -25,6 +25,7 @@ #include #include #include +#include #include @@ -77,35 +78,27 @@ bool SketcherPrs_Tangent::updateIfReadyToDisplay(double theStep, bool withColor) GeomCurvePtr aCurv1 = std::shared_ptr(new GeomAPI_Curve(aShp1)); GeomCurvePtr aCurv2 = std::shared_ptr(new GeomAPI_Curve(aShp2)); - GeomCurvePtr aLine; - GeomCirclePtr aCircle; - double aFirst, aLast; - if (aCurv1->isLine()) { - aLine = aCurv1; - aCircle = GeomCirclePtr(new GeomAPI_Circ(aCurv2)); - aFirst = aCurv2->startParam(); - aLast = aCurv2->endParam(); - } else { - aLine = aCurv2; - aCircle = GeomCirclePtr(new GeomAPI_Circ(aCurv1)); - aFirst = aCurv1->startParam(); - aLast = aCurv1->endParam(); - } - - GeomPointPtr aPnt1 = aLine->getPoint(aLine->startParam()); - GeomPointPtr aPnt2 = aLine->getPoint(aLine->endParam()); - double aParam; GeomPointPtr aPnt; - if (aCircle->parameter(aPnt1, 1.e-4, aParam) && (aParam >= aFirst) && (aParam <= aLast)) - aPnt = aPnt1; - else - aPnt = aPnt2; + GeomShapePtr aIntPnt = aShp1->intersect(aShp2); + if (aIntPnt.get() && aIntPnt->isVertex()) { + GeomVertexPtr aVetrex(new GeomAPI_Vertex(aIntPnt)); + aPnt = aVetrex->point(); + } // Compute points coordinates - SketcherPrs_PositionMgr* aMgr = SketcherPrs_PositionMgr::get(); - gp_Pnt aP1 = aMgr->getPosition(aObj1, this, theStep, aPnt); - myPntArray = new Graphic3d_ArrayOfPoints(1, withColor); - myPntArray->AddVertex(aP1); + if (aPnt.get()) { + SketcherPrs_PositionMgr* aMgr = SketcherPrs_PositionMgr::get(); + gp_Pnt aP1 = aMgr->getPosition(aObj1, this, theStep, aPnt); + myPntArray = new Graphic3d_ArrayOfPoints(1, withColor); + myPntArray->AddVertex(aP1); + } else { + SketcherPrs_PositionMgr* aMgr = SketcherPrs_PositionMgr::get(); + gp_Pnt aP1 = aMgr->getPosition(aObj1, this, theStep); + gp_Pnt aP2 = aMgr->getPosition(aObj2, this, theStep); + myPntArray = new Graphic3d_ArrayOfPoints(2, withColor); + myPntArray->AddVertex(aP1); + myPntArray->AddVertex(aP2); + } return true; }