X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Dir2d.cpp;h=e9131f992d6b2782d32d73d895eabcd6b83ab92e;hb=7f873aed4bae5a98dca078209699b54276b46fce;hp=e3089d8b95afb74937a5d45077f26876c24c1d73;hpb=8dc74f82810d5f597b78633b457efb0ef4f89f9f;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Dir2d.cpp b/src/GeomAPI/GeomAPI_Dir2d.cpp index e3089d8b9..e9131f992 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 @@ -14,7 +16,7 @@ GeomAPI_Dir2d::GeomAPI_Dir2d(const double theX, const double theY) { } -GeomAPI_Dir2d::GeomAPI_Dir2d(const boost::shared_ptr& theCoords) +GeomAPI_Dir2d::GeomAPI_Dir2d(const std::shared_ptr& theCoords) : GeomAPI_Interface(new gp_Dir2d(theCoords->x(), theCoords->y())) { } @@ -29,17 +31,17 @@ 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 +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()); }