X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_XY.cpp;h=52561d580f4c1f92d7d8c3076136810e1450da2f;hb=bdbfb368d71ed11cc0391354a7d86c880cd94949;hp=ebe52e065e53b893c0787b242e136e0389ebc8ba;hpb=f1cd93fd02a54259f72e3191d037323a496b2bef;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_XY.cpp b/src/GeomAPI/GeomAPI_XY.cpp index ebe52e065..52561d580 100644 --- a/src/GeomAPI/GeomAPI_XY.cpp +++ b/src/GeomAPI/GeomAPI_XY.cpp @@ -8,7 +8,7 @@ #include -#define MY_XY static_cast(myImpl) +#define MY_XY implPtr() GeomAPI_XY::GeomAPI_XY(const double theX, const double theY) : GeomAPI_Interface(new gp_XY(theX, theY)) @@ -37,7 +37,16 @@ void GeomAPI_XY::setY(const double theY) const std::shared_ptr GeomAPI_XY::added(const std::shared_ptr& theArg) { - std::shared_ptr aResult(new GeomAPI_XY(MY_XY->X() + theArg->x(), MY_XY->Y() + theArg->y())); + std::shared_ptr aResult(new GeomAPI_XY( + MY_XY->X() + theArg->x(), MY_XY->Y() + theArg->y())); + return aResult; +} + +const std::shared_ptr GeomAPI_XY::decreased( + const std::shared_ptr& theArg) +{ + std::shared_ptr aResult(new GeomAPI_XY( + MY_XY->X() - theArg->x(), MY_XY->Y() - theArg->y())); return aResult; }