X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Edge.cpp;h=759b0b323cb2c90205d2fef862abfe9c3fbc9c97;hb=5453faccbabc730f9816c502460cd3ec37ef5621;hp=8d8bf022a433adb81e3dc4dd44a5abbd02341aa4;hpb=3ca758d1ecab7b2e601b36425ea4c20e9e857412;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Edge.cpp b/src/GeomAPI/GeomAPI_Edge.cpp index 8d8bf022a..759b0b323 100644 --- a/src/GeomAPI/GeomAPI_Edge.cpp +++ b/src/GeomAPI/GeomAPI_Edge.cpp @@ -1,27 +1,41 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: GeomAPI_Edge.cpp // Created: 24 Jul 2014 // Author: Artem ZHIDKOV #include +#include +#include +#include #include -#include -#include +#include +#include +#include #include #include #include +#include +#include GeomAPI_Edge::GeomAPI_Edge() : GeomAPI_Shape() -{} +{ +} + +GeomAPI_Edge::GeomAPI_Edge(const std::shared_ptr& theShape) +{ + if (!theShape->isNull() && theShape->isEdge()) { + setImpl(new TopoDS_Shape(theShape->impl())); + } +} bool GeomAPI_Edge::isLine() const { const TopoDS_Shape& aShape = const_cast(this)->impl(); - Handle(BRep_TEdge) anEdge = Handle(BRep_TEdge)::DownCast(aShape.TShape()); - if (anEdge->Curves().Extent() != 1) - return false; // too many curves in the edge - Handle(Geom_Curve) aCurve = anEdge->Curves().First()->Curve3D(); + double aFirst, aLast; + Handle(Geom_Curve) aCurve = BRep_Tool::Curve((const TopoDS_Edge&)aShape, aFirst, aLast); if (aCurve->IsKind(STANDARD_TYPE(Geom_Line))) return true; return false; @@ -30,10 +44,8 @@ bool GeomAPI_Edge::isLine() const bool GeomAPI_Edge::isCircle() const { const TopoDS_Shape& aShape = const_cast(this)->impl(); - Handle(BRep_TEdge) anEdge = Handle(BRep_TEdge)::DownCast(aShape.TShape()); - if (anEdge->Curves().Extent() != 1) - return false; // too many curves in the edge - Handle(Geom_Curve) aCurve = anEdge->Curves().First()->Curve3D(); + 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; return false; @@ -42,11 +54,84 @@ bool GeomAPI_Edge::isCircle() const bool GeomAPI_Edge::isArc() const { const TopoDS_Shape& aShape = const_cast(this)->impl(); - Handle(BRep_TEdge) anEdge = Handle(BRep_TEdge)::DownCast(aShape.TShape()); - if (anEdge->Curves().Extent() != 1) - return false; // too many curves in the edge - Handle(Geom_Curve) aCurve = anEdge->Curves().First()->Curve3D(); + 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; return false; } + +std::shared_ptr GeomAPI_Edge::firstPoint() +{ + const TopoDS_Shape& aShape = const_cast(this)->impl(); + double aFirst, aLast; + Handle(Geom_Curve) aCurve = BRep_Tool::Curve((const TopoDS_Edge&)aShape, aFirst, aLast); + gp_Pnt aPoint; + aCurve->D0(aFirst, aPoint); + return std::shared_ptr(new GeomAPI_Pnt(aPoint.X(), aPoint.Y(), aPoint.Z())); +} + +std::shared_ptr GeomAPI_Edge::lastPoint() +{ + const TopoDS_Shape& aShape = const_cast(this)->impl(); + double aFirst, aLast; + Handle(Geom_Curve) aCurve = BRep_Tool::Curve((const TopoDS_Edge&)aShape, aFirst, aLast); + gp_Pnt aPoint; + aCurve->D0(aLast, aPoint); + return std::shared_ptr(new GeomAPI_Pnt(aPoint.X(), aPoint.Y(), aPoint.Z())); +} + +std::shared_ptr GeomAPI_Edge::circle() +{ + 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_Circle) aCirc = Handle(Geom_Circle)::DownCast(aCurve); + if (aCirc) { + gp_Pnt aLoc = aCirc->Location(); + std::shared_ptr aCenter(new GeomAPI_Pnt(aLoc.X(), aLoc.Y(), aLoc.Z())); + gp_Dir anAxis = aCirc->Axis().Direction(); + std::shared_ptr aDir(new GeomAPI_Dir(anAxis.X(), anAxis.Y(), anAxis.Z())); + return std::shared_ptr(new GeomAPI_Circ(aCenter, aDir, aCirc->Radius())); + } + } + return std::shared_ptr(); // not circle +} + + +bool GeomAPI_Edge::isEqual(const std::shared_ptr theEdge) const +{ + const TopoDS_Shape& aMyShape = const_cast(this)->impl(); + const TopoDS_Shape& aInShape = theEdge->impl(); + + if (aMyShape.ShapeType() != aInShape.ShapeType()) + return false; + + double aMyStart, aMyEnd; + Handle(Geom_Curve) aMyCurve = BRep_Tool::Curve(TopoDS::Edge(aMyShape), aMyStart, aMyEnd); + double aInStart, aInEnd; + Handle(Geom_Curve) aInCurve = BRep_Tool::Curve(TopoDS::Edge(aInShape), aInStart, aInEnd); + + // Check that curves a the same type + GeomAdaptor_Curve aMyAdaptor(aMyCurve); + GeomAdaptor_Curve aInAdaptor(aInCurve); + if (aMyAdaptor.GetType() != aInAdaptor.GetType()) + return false; + + // Check that end point parameters are the same + if ((aMyStart != aInStart) || (aMyEnd != aInEnd)) + return false; + + // Check that end points are equal + gp_Pnt aMyPnt1 = aMyAdaptor.Value(aMyStart); + gp_Pnt aMyPnt2 = aMyAdaptor.Value(aMyEnd); + gp_Pnt aInPnt1 = aInAdaptor.Value(aInStart); + gp_Pnt aInPnt2 = aInAdaptor.Value(aInEnd); + + if ((!aMyPnt1.IsEqual(aInPnt1, Precision::Confusion())) || + (!aMyPnt2.IsEqual(aInPnt2, Precision::Confusion()))) + return false; + + return true; +}