X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Dir2d.cpp;h=38a0ec56f609608ff480edfce11a3514ff3b0f98;hb=f3ad05e50c4a462c08c31990706c8cc6acc646ac;hp=b7dcfc96089ac2301a5ab745bd226d81534c0c43;hpb=9e869ede4d8c56262bb20534543c2bf56cd6a91b;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Dir2d.cpp b/src/GeomAPI/GeomAPI_Dir2d.cpp index b7dcfc960..38a0ec56f 100644 --- a/src/GeomAPI/GeomAPI_Dir2d.cpp +++ b/src/GeomAPI/GeomAPI_Dir2d.cpp @@ -1,13 +1,28 @@ -// File: GeomAPI_Dir2d.cpp -// Created: 23 Apr 2014 -// Author: Mikhail PONIKAROV +// Copyright (C) 2014-2019 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// 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 +// #include #include #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)) @@ -34,6 +49,11 @@ const std::shared_ptr GeomAPI_Dir2d::xy() return std::shared_ptr(new GeomAPI_XY(MY_DIR->X(), MY_DIR->Y())); } +void GeomAPI_Dir2d::reverse() +{ + MY_DIR->Reverse(); +} + double GeomAPI_Dir2d::dot(const std::shared_ptr& theArg) const { return MY_DIR->Dot(theArg->impl()); @@ -44,3 +64,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()); +}