X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketcherPrs%2FSketcherPrs_PositionMgr.cpp;h=1581533d32eafeeb7e13ecbf1ec8241729dacbd1;hb=a36923e4ef2c8bdfe3ff3fdf6692b2cb181dbc72;hp=1670661528bda4efd13a656e7a4fc8535ab4d79f;hpb=97917d3698f5a2f7fc9596e7c755ff8f6751e373;p=modules%2Fshaper.git diff --git a/src/SketcherPrs/SketcherPrs_PositionMgr.cpp b/src/SketcherPrs/SketcherPrs_PositionMgr.cpp index 167066152..1581533d3 100644 --- a/src/SketcherPrs/SketcherPrs_PositionMgr.cpp +++ b/src/SketcherPrs/SketcherPrs_PositionMgr.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2019 CEA/DEN, EDF R&D +// Copyright (C) 2014-2021 CEA/DEN, EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -20,21 +20,23 @@ #include "SketcherPrs_PositionMgr.h" #include "SketcherPrs_Tools.h" -#include -#include -#include -#include #include #include +#include +#include +#include +#include #include +#include #include -#include -#include #include -#include +#include +#include +#include #include +#include #include #include @@ -150,14 +152,17 @@ const std::array& SketcherPrs_PositionMgr::getPositionIndex(GeomPointPtr if (aUseFeature) { DataPtr aData = aFeature->data(); AttributeRefAttrPtr aObjRef = aData->refattr(SketchPlugin_Constraint::ENTITY_A()); - FeaturePtr aObj = ModelAPI_Feature::feature(aObjRef->object()); + FeaturePtr aObj; + if (aObjRef) + aObj = ModelAPI_Feature::feature(aObjRef->object()); bool aContains = false; - if (containsPoint(aObj, aPnt2d, thePos)) { + if (aObj && containsPoint(aObj, aPnt2d, thePos)) { aContains = true; } else { aObjRef = aData->refattr(SketchPlugin_Constraint::ENTITY_B()); - aObj = ModelAPI_Feature::feature(aObjRef->object()); - if (containsPoint(aObj, aPnt2d, thePos)) { + if (aObjRef) + aObj = ModelAPI_Feature::feature(aObjRef->object()); + if (aObj && containsPoint(aObj, aPnt2d, thePos)) { aContains = true; } } @@ -183,10 +188,12 @@ gp_Vec getVector(ObjectPtr theShape, GeomDirPtr theDir, gp_Pnt theP) gp_Vec aVec; std::shared_ptr aShape = SketcherPrs_Tools::getShape(theShape); if (aShape->isEdge()) { + std::shared_ptr anEdge = aShape->edge(); std::shared_ptr aCurve = std::shared_ptr(new GeomAPI_Curve(aShape)); - if (aCurve->isCircle()) { + if (anEdge->isClosed()) { + double aPeriod = aCurve->endParam() - aCurve->startParam(); Handle(Geom_Curve) aCurv = aCurve->impl(); GeomAPI_ProjectPointOnCurve anExtr(theP, aCurv); double aParam = anExtr.LowerDistanceParameter(); @@ -200,9 +207,9 @@ gp_Vec getVector(ObjectPtr theShape, GeomDirPtr theDir, gp_Pnt theP) // if parameter is near the LastParam, make the vector go inside (reverse) double aDelta = aLastParam - aParam; while (aDelta < -Precision::Confusion()) - aDelta += 2. * M_PI; - while (aDelta > 2. * M_PI - Precision::Confusion()) - aDelta -= 2. * M_PI; + aDelta += aPeriod; + while (aDelta > aPeriod + Precision::Confusion()) + aDelta -= aPeriod; if (fabs(aDelta) < Precision::Confusion()) aVec.Reverse(); } @@ -253,7 +260,8 @@ gp_Pnt SketcherPrs_PositionMgr::getPosition(ObjectPtr theShape, // Compute shifting vector for a one symbol gp_Vec aShift = aVec1.Crossed(thePrs->plane()->normal()->impl()); - aShift.Normalize(); + if (aShift.SquareMagnitude() > Precision::SquareConfusion()) + aShift.Normalize(); aShift.Multiply(theStep * 0.8); // Shift the position coordinate according to position index @@ -325,8 +333,7 @@ std::list getCurves(const GeomPointPtr& thePnt, const SketcherPrs_Sym if (aDist <= Precision::Confusion()) aList.push_back(aFeature->firstResult()); } - } else if ((aFeature->getKind() == SketchPlugin_Circle::ID()) || - (aFeature->getKind() == SketchPlugin_Arc::ID())) { + } else { GeomCurvePtr aCurve; ObjectPtr aResObj; std::list aResults = aFeature->results(); @@ -340,10 +347,18 @@ std::list getCurves(const GeomPointPtr& thePnt, const SketcherPrs_Sym } } if (aCurve.get()) { - double aStart = aCurve->startParam(); - double aEnd = aCurve->endParam(); - GeomCirclePtr aCircle = GeomCirclePtr(new GeomAPI_Circ(aCurve)); - GeomPointPtr aProjPnt = aCircle->project(thePnt); + GeomPointPtr aProjPnt; + if (aFeature->getKind() == SketchPlugin_Circle::ID() || + aFeature->getKind() == SketchPlugin_Arc::ID()) { + GeomCirclePtr aCircle = GeomCirclePtr(new GeomAPI_Circ(aCurve)); + aProjPnt = aCircle->project(thePnt); + } + else if (aFeature->getKind() == SketchPlugin_Ellipse::ID()) { + GeomEllipsePtr anEllipse = GeomEllipsePtr(new GeomAPI_Ellipse(aCurve)); + aProjPnt = anEllipse->project(thePnt); + } + else + aProjPnt = aCurve->project(thePnt); if (aProjPnt && thePnt->distance(aProjPnt) <= Precision::Confusion()) aList.push_back(aResObj); } @@ -358,6 +373,8 @@ gp_Pnt SketcherPrs_PositionMgr::getPointPosition( double theStep, GeomPointPtr thePnt) { gp_Pnt aP = thePnt->impl(); + if (!thePrs->plane().get()) + return aP; GeomDirPtr aNormal = thePrs->plane()->normal(); gp_Dir aNormDir = aNormal->impl(); @@ -407,7 +424,7 @@ gp_Pnt SketcherPrs_PositionMgr::getPointPosition( gp_Vec aVecPos; // If number of angle less then number of symbols then each symbol can be placed // directly inside of the angle - if (aAngles.size() >= aPos[1] && !aVectors.empty()) { + if ((int)aAngles.size() >= aPos[1] && !aVectors.empty()) { int aId = aPos[0]; aVecPos = *(std::next(aVectors.begin(), aId)); @@ -422,9 +439,7 @@ gp_Pnt SketcherPrs_PositionMgr::getPointPosition( double aAng; std::list::const_iterator aItAng; - double aAngPos; bool aHasPlace = false; - //int aIntId = 0; // a position inside a one sector while (aPosCount < aPos[1]) { for (aItAng = aAngles.cbegin(), aItVec = aVectors.cbegin(); aItAng != aAngles.cend(); ++aItAng, ++aItVec) { @@ -434,9 +449,7 @@ gp_Pnt SketcherPrs_PositionMgr::getPointPosition( if ((!aHasPlace) && (aPosCount >= (aPos[0] + 1))) { aHasPlace = true; - aAngPos = (*aItAng); aVecPos = (*aItVec); - //aIntId = aPos[0] - (aPosCount - Nb); } } if (aPosCount < aPos[1]) { @@ -474,10 +487,10 @@ void SketcherPrs_PositionMgr::deleteConstraint(const SketcherPrs_SymbolPrs* theP aToDel.push_back(aIt->first); else { // Reindex objects positions in order to avoid spaces - PositionsMap::iterator aIt; + PositionsMap::iterator aPMIt; int i = 0; - for (aIt = aPosMap.begin(); aIt != aPosMap.end(); aIt++, i++) - aIt->second = i; + for (aPMIt = aPosMap.begin(); aPMIt != aPosMap.end(); aPMIt++, i++) + aPMIt->second = i; } } }