X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Dir2d.cpp;h=1e5332d3147b09b4981f185dec6c3077ffb17b20;hb=73502ac782ffc45a3acf665ded34f582b07ec4d5;hp=fd795ab19aa12a9077c8e455da7e19e2270f5589;hpb=258a626d26271b93bae55eb0803de020e2b6f315;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Dir2d.cpp b/src/GeomAPI/GeomAPI_Dir2d.cpp index fd795ab19..1e5332d31 100644 --- a/src/GeomAPI/GeomAPI_Dir2d.cpp +++ b/src/GeomAPI/GeomAPI_Dir2d.cpp @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: GeomAPI_Dir2d.cpp // Created: 23 Apr 2014 // Author: Mikhail PONIKAROV @@ -7,15 +9,17 @@ #include -#define MY_DIR static_cast(myImpl) +#define MY_DIR implPtr() GeomAPI_Dir2d::GeomAPI_Dir2d(const double theX, const double theY) - : GeomAPI_Interface(new gp_Dir2d(theX, theY)) -{} + : GeomAPI_Interface(new gp_Dir2d(theX, theY)) +{ +} -GeomAPI_Dir2d::GeomAPI_Dir2d(const boost::shared_ptr& theCoords) - : GeomAPI_Interface(new gp_Dir2d(theCoords->x(), theCoords->y())) -{} +GeomAPI_Dir2d::GeomAPI_Dir2d(const std::shared_ptr& theCoords) + : GeomAPI_Interface(new gp_Dir2d(theCoords->x(), theCoords->y())) +{ +} double GeomAPI_Dir2d::x() const { @@ -27,18 +31,27 @@ double GeomAPI_Dir2d::y() const return MY_DIR->Y(); } -const boost::shared_ptr GeomAPI_Dir2d::xy() +const std::shared_ptr GeomAPI_Dir2d::xy() { - return boost::shared_ptr(new GeomAPI_XY(MY_DIR->X(), MY_DIR->Y())); + return std::shared_ptr(new GeomAPI_XY(MY_DIR->X(), MY_DIR->Y())); } -double GeomAPI_Dir2d::dot(const boost::shared_ptr& theArg) const +void GeomAPI_Dir2d::reverse() +{ + MY_DIR->Reverse(); +} + +double GeomAPI_Dir2d::dot(const std::shared_ptr& theArg) const { return MY_DIR->Dot(theArg->impl()); } -double GeomAPI_Dir2d::cross(const boost::shared_ptr& theArg) const +double GeomAPI_Dir2d::cross(const std::shared_ptr& theArg) const { return MY_DIR->XY().Crossed(theArg->impl().XY()); } +double GeomAPI_Dir2d::angle(const std::shared_ptr& theArg) const +{ + return MY_DIR->Angle(theArg->impl()); +}