X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelGeomAlgo%2FModelGeomAlgo_Point2D.cpp;h=8278b2109df2fd73e5a6761060e85c715666f78d;hb=88ee9b2b81cf93a6324336b57e30cc8a3a487499;hp=649c3a1cc492779d73ca1a52700b8f88cdc2efe0;hpb=2532fb2df83ee1ddd9ff3e8b381d3788eaa15b69;p=modules%2Fshaper.git diff --git a/src/ModelGeomAlgo/ModelGeomAlgo_Point2D.cpp b/src/ModelGeomAlgo/ModelGeomAlgo_Point2D.cpp old mode 100755 new mode 100644 index 649c3a1cc..8278b2109 --- a/src/ModelGeomAlgo/ModelGeomAlgo_Point2D.cpp +++ b/src/ModelGeomAlgo/ModelGeomAlgo_Point2D.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// Copyright (C) 2014-2022 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 @@ -12,9 +12,9 @@ // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // #include "ModelGeomAlgo_Point2D.h" @@ -39,6 +39,7 @@ #include #include #include +#include //#define DEBUG_POINT_INSIDE_SHAPE #ifdef DEBUG_POINT_INSIDE_SHAPE @@ -294,7 +295,7 @@ void ModelGeomAlgo_Point2D::getPointsInsideShape( std::shared_ptr aPnt2d = anAttribute->pnt(); std::shared_ptr aPoint = aPnt2d->to3D(theOrigin, theDirX, theDirY); std::shared_ptr aProjectedPoint; - if (isPointOnEdge(theBaseShape, aPoint, aProjectedPoint)) { + if (isInnerPointOnEdge(theBaseShape, aPoint, aProjectedPoint)) { if (thePointToAttributeOrObject.find(aProjectedPoint) != thePointToAttributeOrObject.end()) thePointToAttributeOrObject.at(aProjectedPoint).first.push_back(anAttribute); else { @@ -335,7 +336,7 @@ void ModelGeomAlgo_Point2D::getPointsInsideShape_p( std::shared_ptr aPnt2d = anAttribute->pnt(); std::shared_ptr aPoint = aPnt2d->to3D(theOrigin, theDirX, theDirY); std::shared_ptr aProjectedPoint; - if (isPointOnEdge(theBaseShape, aPoint, aProjectedPoint)) { + if (isInnerPointOnEdge(theBaseShape, aPoint, aProjectedPoint)) { thePoints.push_back(aProjectedPoint); theAttributeToPoint[anAttribute] = aProjectedPoint; } @@ -348,15 +349,8 @@ bool ModelGeomAlgo_Point2D::isPointOnEdge(const std::shared_ptr t { bool isInside = false; if (theBaseShape->shapeType() == GeomAPI_Shape::EDGE) { - std::shared_ptr anEdge(new GeomAPI_Edge(theBaseShape)); - if (anEdge->isLine()) { - std::shared_ptr aLine = anEdge->line(); - theProjectedPoint = aLine->project(thePoint); - } - else if (anEdge->isCircle() || anEdge->isArc()) { - std::shared_ptr aCircle = anEdge->circle(); - theProjectedPoint = aCircle->project(thePoint); - } + GeomCurvePtr aCurve(new GeomAPI_Curve(theBaseShape->edge())); + theProjectedPoint = aCurve->project(thePoint); if (theProjectedPoint.get()) { std::shared_ptr aVertexShape(new GeomAPI_Vertex(theProjectedPoint->x(), theProjectedPoint->y(), theProjectedPoint->z())); @@ -366,11 +360,33 @@ bool ModelGeomAlgo_Point2D::isPointOnEdge(const std::shared_ptr t return isInside; } + +bool ModelGeomAlgo_Point2D::isInnerPointOnEdge(const std::shared_ptr theBaseShape, + const std::shared_ptr& thePoint, + std::shared_ptr& theProjectedPoint) +{ + bool isInside = isPointOnEdge(theBaseShape, thePoint, theProjectedPoint); + if (isInside) { + std::shared_ptr anEdge(new GeomAPI_Edge(theBaseShape)); + if (!anEdge->isClosed()) { + // check the point is not on the boundary + GeomVertexPtr aVertex(new GeomAPI_Vertex(theProjectedPoint->x(), + theProjectedPoint->y(), theProjectedPoint->z())); + GeomAPI_ShapeExplorer anExp(anEdge, GeomAPI_Shape::VERTEX); + for (; anExp.more(); anExp.next()) { + GeomVertexPtr aCurV = anExp.current()->vertex(); + isInside = !GeomAlgoAPI_ShapeTools::isSubShapeInsideShape(aVertex, aCurV); + } + } + } + return isInside; +} + std::string doubleToString(double theValue) { std::string aValueStr; char aBuf[50]; - int n = sprintf(aBuf, "%g", theValue); + sprintf(aBuf, "%g", theValue); aValueStr = std::string(aBuf); return aValueStr; }