X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Dir2d.cpp;h=4cb8149a3999d46e55c58e674aff32820fe3523e;hb=3d28bcbab2f3ed0e40295e64f4e836caebc19fca;hp=e9131f992d6b2782d32d73d895eabcd6b83ab92e;hpb=38afbd899a8645c83e17f2c24a17a2b7414911b4;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Dir2d.cpp b/src/GeomAPI/GeomAPI_Dir2d.cpp index e9131f992..4cb8149a3 100644 --- a/src/GeomAPI/GeomAPI_Dir2d.cpp +++ b/src/GeomAPI/GeomAPI_Dir2d.cpp @@ -9,7 +9,7 @@ #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)) @@ -46,3 +46,7 @@ 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()); +}