X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Pnt.cpp;h=29fe933a668f87ddfab4985fbf3ff1b910e12c6a;hb=0448acdd8e8c1e1638a2cf861e42e915966b2034;hp=6414a2dc35865a1af49ae8baec9f555b11a3ef31;hpb=de0f49686ec6655ddc5816c8fa5383964662aec4;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Pnt.cpp b/src/GeomAPI/GeomAPI_Pnt.cpp index 6414a2dc3..29fe933a6 100644 --- a/src/GeomAPI/GeomAPI_Pnt.cpp +++ b/src/GeomAPI/GeomAPI_Pnt.cpp @@ -1,16 +1,30 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: GeomAPI_Pnt.cpp // Created: 23 Apr 2014 // Author: Mikhail PONIKAROV #include +#include +#include +#include +#include #include +#include +#include #define MY_PNT static_cast(myImpl) GeomAPI_Pnt::GeomAPI_Pnt(const double theX, const double theY, const double theZ) - : GeomAPI_Interface(new gp_Pnt(theX, theY, theZ)) -{} + : GeomAPI_Interface(new gp_Pnt(theX, theY, theZ)) +{ +} + +GeomAPI_Pnt::GeomAPI_Pnt(const std::shared_ptr& theCoords) + : GeomAPI_Interface(new gp_Pnt(theCoords->x(), theCoords->y(), theCoords->z())) +{ +} double GeomAPI_Pnt::x() const { @@ -41,3 +55,43 @@ void GeomAPI_Pnt::setZ(const double theZ) { return MY_PNT->SetZ(theZ); } + +const std::shared_ptr GeomAPI_Pnt::xyz() +{ + return std::shared_ptr(new GeomAPI_XYZ(MY_PNT->X(), MY_PNT->Y(), MY_PNT->Z())); +} + +double GeomAPI_Pnt::distance(const std::shared_ptr& theOther) const +{ + return MY_PNT->Distance(theOther->impl()); +} + +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 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())); +}