X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Pnt.cpp;h=d2b943df36e7b3089af3a36846a03fccb27fe4b1;hb=04a80e2c553cff698cb44206ce2da2cc362de53a;hp=aae0d1b8b03ebc64b9d29006e9b0c0489b4b5beb;hpb=fa107dfb3ba274eaeb191c5ec4f6c96517b55a02;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Pnt.cpp b/src/GeomAPI/GeomAPI_Pnt.cpp index aae0d1b8b..d2b943df3 100644 --- a/src/GeomAPI/GeomAPI_Pnt.cpp +++ b/src/GeomAPI/GeomAPI_Pnt.cpp @@ -1,22 +1,41 @@ -// File: GeomAPI_Pnt.cpp -// Created: 23 Apr 2014 -// Author: Mikhail PONIKAROV +// Copyright (C) 2014-2020 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 #include #include +#include #include +#include +#include -#define MY_PNT static_cast(myImpl) +#define MY_PNT implPtr() GeomAPI_Pnt::GeomAPI_Pnt(const double theX, const double theY, const double theZ) : GeomAPI_Interface(new gp_Pnt(theX, theY, theZ)) { } -GeomAPI_Pnt::GeomAPI_Pnt(const boost::shared_ptr& theCoords) +GeomAPI_Pnt::GeomAPI_Pnt(const std::shared_ptr& theCoords) : GeomAPI_Interface(new gp_Pnt(theCoords->x(), theCoords->y(), theCoords->z())) { } @@ -51,23 +70,67 @@ void GeomAPI_Pnt::setZ(const double theZ) return MY_PNT->SetZ(theZ); } -const boost::shared_ptr GeomAPI_Pnt::xyz() +const std::shared_ptr GeomAPI_Pnt::xyz() { - return boost::shared_ptr(new GeomAPI_XYZ(MY_PNT->X(), MY_PNT->Y(), MY_PNT->Z())); + return std::shared_ptr(new GeomAPI_XYZ(MY_PNT->X(), MY_PNT->Y(), MY_PNT->Z())); } -double GeomAPI_Pnt::distance(const boost::shared_ptr& theOther) const +double GeomAPI_Pnt::distance(const std::shared_ptr& theOther) const { return MY_PNT->Distance(theOther->impl()); } -boost::shared_ptr GeomAPI_Pnt::to2D(const boost::shared_ptr& theOrigin, - const boost::shared_ptr& theDirX, const boost::shared_ptr& theDirY) +bool GeomAPI_Pnt::isEqual(const std::shared_ptr& theOther) const +{ + return distance(theOther) < Precision::Confusion(); +} + +bool GeomAPI_Pnt::isLess(const std::shared_ptr& theOther, + const double theTolerance) const +{ + if (MY_PNT->X() + theTolerance < theOther->x()) + return true; + else if (MY_PNT->X() < theOther->x() + theTolerance) { + if (MY_PNT->Y() + theTolerance < theOther->y()) + return true; + else if (MY_PNT->Y() < theOther->y() + theTolerance && + MY_PNT->Z() + theTolerance < theOther->z()) + return true; + } + return false; +} + +std::shared_ptr GeomAPI_Pnt::to2D(const std::shared_ptr& theOrigin, + const std::shared_ptr& theDirX, const std::shared_ptr& theDirY) { gp_Pnt anOriginPnt(theOrigin->x(), theOrigin->y(), theOrigin->z()); gp_Vec aVec(anOriginPnt, impl()); double aX = aVec.X() * theDirX->x() + aVec.Y() * theDirX->y() + aVec.Z() * theDirX->z(); double aY = aVec.X() * theDirY->x() + aVec.Y() * theDirY->y() + aVec.Z() * theDirY->z(); - return boost::shared_ptr(new GeomAPI_Pnt2d(aX, aY)); + return std::shared_ptr(new GeomAPI_Pnt2d(aX, aY)); +} + + +void GeomAPI_Pnt::translate(const std::shared_ptr& theDir, double theDist) +{ + gp_Vec aVec(theDir->impl()); + aVec.Normalize(); + aVec.Multiply(theDist); + MY_PNT->Translate(aVec); +} + +std::shared_ptr GeomAPI_Pnt::to2D(const std::shared_ptr& thePln) const +{ + double aA, aB, aC, aD; + thePln->coefficients(aA, aB, aC, aD); + gp_Pln aPln(aA, aB, aC, aD); + + gp_Pnt2d aRes = ProjLib::Project(aPln, *MY_PNT); + return std::shared_ptr(new GeomAPI_Pnt2d(aRes.X(), aRes.Y())); +} + +void GeomAPI_Pnt::rotate(const std::shared_ptr& theAxis, const double theAngle) +{ + MY_PNT->Rotate(theAxis->impl(), theAngle / 180.0 * M_PI); }