X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Pnt.h;h=d06d5d9fb1be8a0a210c697c611be2d8be89ce1a;hb=f60dc9dd94d5d4b0ea07e3e3cbfd5b3028f0942d;hp=17c2c0db81f000b8f5f4b1f0a4bf6be8aa2dadd7;hpb=83e85cedfb936e7755500322e1afa638d318a863;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Pnt.h b/src/GeomAPI/GeomAPI_Pnt.h index 17c2c0db8..d06d5d9fb 100644 --- a/src/GeomAPI/GeomAPI_Pnt.h +++ b/src/GeomAPI/GeomAPI_Pnt.h @@ -1,8 +1,22 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: GeomAPI_Pnt.hxx -// Created: 23 Apr 2014 -// Author: Mikhail PONIKAROV +// Copyright (C) 2014-2017 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 +// #ifndef GeomAPI_Pnt_H_ #define GeomAPI_Pnt_H_ @@ -24,57 +38,67 @@ class GeomAPI_Pnt : public GeomAPI_Interface { public: /// Creation of point by coordinates - GEOMAPI_EXPORT + GEOMAPI_EXPORT GeomAPI_Pnt(const double theX, const double theY, const double theZ); /// Creation of point by coordinates - GEOMAPI_EXPORT + GEOMAPI_EXPORT GeomAPI_Pnt(const std::shared_ptr& theCoords); /// returns X coordinate - GEOMAPI_EXPORT + GEOMAPI_EXPORT double x() const; /// returns Y coordinate - GEOMAPI_EXPORT + GEOMAPI_EXPORT double y() const; /// returns Z coordinate - GEOMAPI_EXPORT + GEOMAPI_EXPORT double z() const; /// sets X coordinate - GEOMAPI_EXPORT + GEOMAPI_EXPORT void setX(const double theX); /// sets Y coordinate - GEOMAPI_EXPORT + GEOMAPI_EXPORT void setY(const double theY); /// sets Z coordinate - GEOMAPI_EXPORT + GEOMAPI_EXPORT void setZ(const double theZ); /// returns coordinates of the point - GEOMAPI_EXPORT + GEOMAPI_EXPORT const std::shared_ptr xyz(); /// Distance between two points - GEOMAPI_EXPORT + GEOMAPI_EXPORT double distance(const std::shared_ptr& theOther) const; /// Returns whether the distance between two points is less then precision confusion - GEOMAPI_EXPORT + GEOMAPI_EXPORT bool isEqual(const std::shared_ptr& theOther) const; + /// Returns \c true, if the current point is less than theOther. + /// The point is less than other, if X coordinate is less. + /// In case of X's are equal, if Y is less than other. + /// If Y's are equal too, compare Z's. + GEOMAPI_EXPORT + bool isLess(const std::shared_ptr& theOther) const; + /// Projects a point to the plane defined by the origin and 2 axes vectors in this plane - GEOMAPI_EXPORT + GEOMAPI_EXPORT std::shared_ptr to2D(const std::shared_ptr& theOrigin, const std::shared_ptr& theDirX, const std::shared_ptr& theDirY); /// Projects a point to the plane defined by the origin and 2 axes vectors in this plane - GEOMAPI_EXPORT + GEOMAPI_EXPORT std::shared_ptr to2D(const std::shared_ptr& thePln) const; /// Translates the point along direction theDir on distance theDist - GEOMAPI_EXPORT + GEOMAPI_EXPORT void translate(const std::shared_ptr& theDir, double theDist); }; +//! Pointer on the object +typedef std::shared_ptr GeomPointPtr; + #endif