X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Edge.cpp;h=9364605b9b1b95c6cc6862e8145285e6024ff76b;hb=a211165b993cec59888b300199b44b525c0daf69;hp=f939e6559e4c3e7b722326e95c7e71aa6b22e2cb;hpb=4c74e5b864eef28128e27b3ece944990ca8f3fbe;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Edge.cpp b/src/GeomAPI/GeomAPI_Edge.cpp index f939e6559..9364605b9 100644 --- a/src/GeomAPI/GeomAPI_Edge.cpp +++ b/src/GeomAPI/GeomAPI_Edge.cpp @@ -25,6 +25,7 @@ #include #include #include +#include #include @@ -35,12 +36,14 @@ #include #include #include +#include #include #include #include #include #include #include +#include #include #include #include @@ -68,17 +71,46 @@ GeomAPI_Edge::GeomAPI_Edge(const std::shared_ptr& theShape) } } +void GeomAPI_Edge::vertices(std::shared_ptr& theStartVertex, + std::shared_ptr& theEndVertex) const +{ + const TopoDS_Edge& anEdge = impl(); + TopoDS_Vertex aStart, aEnd; + TopExp::Vertices(anEdge, aStart, aEnd); + theStartVertex.reset(new GeomAPI_Vertex); + theStartVertex->setImpl(new TopoDS_Vertex(aStart)); + theEndVertex.reset(new GeomAPI_Vertex); + theEndVertex->setImpl(new TopoDS_Vertex(aEnd)); +} + +static Handle(Geom_Curve) baseCurve(const TopoDS_Edge& theEdge) +{ + double aFirst, aLast; + Handle(Geom_Curve) aCurve = BRep_Tool::Curve(theEdge, aFirst, aLast); + while (aCurve->IsKind(STANDARD_TYPE(Geom_TrimmedCurve))) { + Handle(Geom_TrimmedCurve) tc = Handle(Geom_TrimmedCurve)::DownCast(aCurve); + aCurve = tc->BasisCurve(); + } + return aCurve; +} + bool GeomAPI_Edge::isSameGeometry(const std::shared_ptr theShape) const { if (!theShape->isEdge()) return false; + if (isSame(theShape)) + return true; + TopoDS_Edge anOwnEdge = TopoDS::Edge(impl()); TopoDS_Edge anOtherEdge = TopoDS::Edge(theShape->impl()); - double aFirst, aLast; - Handle(Geom_Curve) anOwnCurve = BRep_Tool::Curve(anOwnEdge, aFirst, aLast); - Handle(Geom_Curve) anOtherCurve = BRep_Tool::Curve(anOtherEdge, aFirst, aLast); - return anOwnCurve == anOtherCurve; + Handle(Geom_Curve) anOwnCurve = baseCurve(anOwnEdge); + Handle(Geom_Curve) anOtherCurve = baseCurve(anOtherEdge); + GeomAPI_ExtremaCurveCurve anExtrema(anOwnCurve, anOtherCurve); + + bool isSame = anExtrema.Extrema().IsParallel() && + anExtrema.TotalLowerDistance() < Precision::Confusion(); + return isSame; } bool GeomAPI_Edge::isLine() const @@ -148,6 +180,18 @@ bool GeomAPI_Edge::isEllipse() const return false; } +bool GeomAPI_Edge::isBSpline() const +{ + const TopoDS_Shape& aShape = const_cast(this)->impl(); + double aFirst, aLast; + Handle(Geom_Curve) aCurve = BRep_Tool::Curve((const TopoDS_Edge&)aShape, aFirst, aLast); + if (aCurve.IsNull()) // degenerative edge + return false; + while (aCurve->IsKind(STANDARD_TYPE(Geom_TrimmedCurve))) + aCurve = Handle(Geom_TrimmedCurve)::DownCast(aCurve)->BasisCurve(); + return aCurve->IsKind(STANDARD_TYPE(Geom_BSplineCurve)); +} + std::shared_ptr GeomAPI_Edge::firstPoint() { const TopoDS_Shape& aShape = const_cast(this)->impl(); @@ -263,13 +307,26 @@ bool GeomAPI_Edge::isEqual(const std::shared_ptr theEdge) const return true; } -// LCOV_EXCL_START +void GeomAPI_Edge::setRange(const double& theFirst, const double& theLast) +{ + TopoDS_Edge anEdge = impl(); + double aFirst, aLast; + Handle(Geom_Curve) aCurve = BRep_Tool::Curve(anEdge, aFirst, aLast); + double aTolerance = BRep_Tool::Tolerance(anEdge); + if (aCurve->DynamicType() == STANDARD_TYPE(Geom_TrimmedCurve)) { + aCurve = Handle(Geom_TrimmedCurve)::DownCast(aCurve)->BasisCurve(); + BRep_Builder().UpdateEdge(anEdge, aCurve, aTolerance); + } + BRep_Builder().Range(anEdge, theFirst, theLast); +} + void GeomAPI_Edge::getRange(double& theFirst, double& theLast) const { const TopoDS_Shape& aShape = const_cast(this)->impl(); Handle(Geom_Curve) aCurve = BRep_Tool::Curve((const TopoDS_Edge&)aShape, theFirst, theLast); } +// LCOV_EXCL_START bool GeomAPI_Edge::isInPlane(std::shared_ptr thePlane) const { double aFirst, aLast; @@ -346,6 +403,7 @@ void GeomAPI_Edge::intersectWithPlane(const std::shared_ptr thePlan GeomAPI_ExtremaCurveSurface anExtrema(aCurve, aPlane); double aTolerance = BRep_Tool::Tolerance(TopoDS::Edge(aShape)); if (anExtrema.NbExtrema() > 0 && + !anExtrema.Extrema().IsParallel() && anExtrema.LowerDistance() < aTolerance) { // distance is lower than tolerance => tangent case gp_Pnt aPntC, aPntS;