X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Edge.cpp;h=9927c2ae9cc3bb899fcb53611073f05d3d67b436;hb=4df4bd61da1ea5d357671c819a8ced6ec9ba77ac;hp=6ac8d3d5274f07f0cfa85af707bd3b3d3eae87c6;hpb=2532fb2df83ee1ddd9ff3e8b381d3788eaa15b69;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Edge.cpp b/src/GeomAPI/GeomAPI_Edge.cpp index 6ac8d3d52..9927c2ae9 100644 --- a/src/GeomAPI/GeomAPI_Edge.cpp +++ b/src/GeomAPI/GeomAPI_Edge.cpp @@ -14,7 +14,8 @@ // License along with this library; if not, write to the Free Software // 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 @@ -23,6 +24,8 @@ #include #include #include +#include +#include #include @@ -34,9 +37,11 @@ #include #include #include +#include #include #include #include +#include #include @@ -95,6 +100,16 @@ bool GeomAPI_Edge::isArc() const return false; } +bool GeomAPI_Edge::isEllipse() 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_Ellipse))) + return true; + return false; +} + std::shared_ptr GeomAPI_Edge::firstPoint() { const TopoDS_Shape& aShape = const_cast(this)->impl(); @@ -115,14 +130,14 @@ std::shared_ptr GeomAPI_Edge::lastPoint() return std::shared_ptr(new GeomAPI_Pnt(aPoint.X(), aPoint.Y(), aPoint.Z())); } -std::shared_ptr GeomAPI_Edge::circle() +std::shared_ptr GeomAPI_Edge::circle() 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) { + if (!aCurve.IsNull()) { Handle(Geom_Circle) aCirc = Handle(Geom_Circle)::DownCast(aCurve); - if (aCirc) { + if (!aCirc.IsNull()) { gp_Pnt aLoc = aCirc->Location(); std::shared_ptr aCenter(new GeomAPI_Pnt(aLoc.X(), aLoc.Y(), aLoc.Z())); gp_Dir anAxis = aCirc->Axis().Direction(); @@ -133,7 +148,24 @@ std::shared_ptr GeomAPI_Edge::circle() return std::shared_ptr(); // not circle } -std::shared_ptr GeomAPI_Edge::line() +std::shared_ptr GeomAPI_Edge::ellipse() 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()) { + Handle(Geom_Ellipse) aElips = Handle(Geom_Ellipse)::DownCast(aCurve); + if (!aElips.IsNull()) { + gp_Elips aGpElips = aElips->Elips(); + std::shared_ptr aEllipse(new GeomAPI_Ellipse()); + aEllipse->setImpl(new gp_Elips(aGpElips)); + return aEllipse; + } + } + return std::shared_ptr(); // not elipse +} + +std::shared_ptr GeomAPI_Edge::line() const { const TopoDS_Shape& aShape = const_cast(this)->impl(); double aFirst, aLast;