X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Edge.cpp;h=0a590bd9909a3de505c52741e7975800d5ad8678;hb=73b293b1c77ab13ac9fbbb2aefb3b8573e63180b;hp=759b0b323cb2c90205d2fef862abfe9c3fbc9c97;hpb=b41162256f00b8366751409f7f25dce00dfe6276;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Edge.cpp b/src/GeomAPI/GeomAPI_Edge.cpp index 759b0b323..0a590bd99 100644 --- a/src/GeomAPI/GeomAPI_Edge.cpp +++ b/src/GeomAPI/GeomAPI_Edge.cpp @@ -5,23 +5,36 @@ // Author: Artem ZHIDKOV #include +#include #include #include #include +#include + +#include #include #include #include +#include #include #include #include #include #include #include +#include + +#include GeomAPI_Edge::GeomAPI_Edge() - : GeomAPI_Shape() { + TopoDS_Edge* anEdge = new TopoDS_Edge; + + BRep_Builder aBuilder; + aBuilder.MakeEdge(*anEdge); + + setImpl(anEdge); } GeomAPI_Edge::GeomAPI_Edge(const std::shared_ptr& theShape) @@ -46,8 +59,12 @@ bool GeomAPI_Edge::isCircle() 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->IsKind(STANDARD_TYPE(Geom_Circle)) && aCurve->IsClosed()) - return true; + if (aCurve->IsKind(STANDARD_TYPE(Geom_Circle))) + { + // Check the difference of first and last parameters to be equal to the curve period + if (Abs(aLast - aFirst - aCurve->Period()) < Precision::PConfusion()) + return true; + } return false; } @@ -56,8 +73,12 @@ bool GeomAPI_Edge::isArc() 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->IsKind(STANDARD_TYPE(Geom_Circle)) && !aCurve->IsClosed()) - return true; + if (aCurve->IsKind(STANDARD_TYPE(Geom_Circle))) + { + // Check the difference of first and last parameters is not equal the curve period + if (Abs(aLast - aFirst - aCurve->Period()) >= Precision::PConfusion()) + return true; + } return false; } @@ -99,12 +120,37 @@ std::shared_ptr GeomAPI_Edge::circle() return std::shared_ptr(); // not circle } +std::shared_ptr GeomAPI_Edge::line() +{ + 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) { + Handle(Geom_Line) aLine = Handle(Geom_Line)::DownCast(aCurve); + if (aLine) { + gp_Pnt aStartPnt = aLine->Value(aFirst); + std::shared_ptr aStart( + new GeomAPI_Pnt(aStartPnt.X(), aStartPnt.Y(), aStartPnt.Z())); + gp_Pnt aEndPnt = aLine->Value(aLast); + std::shared_ptr aEnd( + new GeomAPI_Pnt(aEndPnt.X(), aEndPnt.Y(), aEndPnt.Z())); + return std::shared_ptr(new GeomAPI_Lin(aStart, aEnd)); + } + } + return std::shared_ptr(); // not circle +} + bool GeomAPI_Edge::isEqual(const std::shared_ptr theEdge) const { + if (!theEdge.get() || ! theEdge->isEdge()) + return false; const TopoDS_Shape& aMyShape = const_cast(this)->impl(); const TopoDS_Shape& aInShape = theEdge->impl(); + if (aMyShape.IsNull() || aInShape.IsNull()) + return false; + if (aMyShape.ShapeType() != aInShape.ShapeType()) return false; @@ -135,3 +181,53 @@ bool GeomAPI_Edge::isEqual(const std::shared_ptr theEdge) const return true; } + +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); +} + +bool GeomAPI_Edge::isInPlane(std::shared_ptr thePlane) const +{ + double aFirst, aLast; + const TopoDS_Shape& aShape = const_cast(this)->impl(); + Handle(Geom_Curve) aCurve = BRep_Tool::Curve((const TopoDS_Edge&)aShape, aFirst, aLast); + + double A, B, C, D; + thePlane->coefficients(A, B, C, D); + gp_Pln aPlane(A, B, C, D); + + bool inPlane = false; + if (aCurve->IsKind(STANDARD_TYPE(Geom_Line))) { + // check start and end points on the plane + gp_Pnt aFirstPnt = aCurve->Value(aFirst); + gp_Pnt aLastPnt = aCurve->Value(aLast); + inPlane = aPlane.SquareDistance(aFirstPnt) < Precision::SquareConfusion() && + aPlane.SquareDistance(aLastPnt) < Precision::SquareConfusion(); + } else if (aCurve->IsKind(STANDARD_TYPE(Geom_Circle))) { + // check the center on the plane and normals are collinear + Handle(Geom_Circle) aCirc = Handle(Geom_Circle)::DownCast(aCurve); + gp_Pnt aCenter = aCirc->Location(); + Standard_Real aDot = aPlane.Axis().Direction().Dot(aCirc->Axis().Direction()); + inPlane = aPlane.SquareDistance(aCenter) < Precision::SquareConfusion() && + Abs(Abs(aDot) - 1.0) < Precision::Confusion(); + } else { + // three points checking + gp_Pnt aFirstPnt = aCurve->Value(aFirst); + gp_Pnt aMidPnt = aCurve->Value((aFirst + aLast) / 2.); + gp_Pnt aLastPnt = aCurve->Value(aLast); + inPlane = aPlane.SquareDistance(aFirstPnt) < Precision::SquareConfusion() && + aPlane.SquareDistance(aMidPnt) < Precision::SquareConfusion() && + aPlane.SquareDistance(aLastPnt) < Precision::SquareConfusion(); + } + return inPlane; +} + +double GeomAPI_Edge::length() const +{ + const TopoDS_Edge& anEdge = TopoDS::Edge(impl()); + BRepAdaptor_Curve aBRepAdaptor = BRepAdaptor_Curve(anEdge); + Adaptor3d_Curve* anAdaptor3d = &aBRepAdaptor; + return GCPnts_AbscissaPoint::Length(*anAdaptor3d); +}