X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomData%2FGeomData_Point.h;h=dbb6baf4510285fbeae520e2284a995a152670f7;hb=f60dc9dd94d5d4b0ea07e3e3cbfd5b3028f0942d;hp=2aa587a1d8f0819a5e8f5e9b4cf86c3752a3a41b;hpb=423c10234142d14d0d5de89383f2f96a4ec5930f;p=modules%2Fshaper.git diff --git a/src/GeomData/GeomData_Point.h b/src/GeomData/GeomData_Point.h index 2aa587a1d..dbb6baf45 100644 --- a/src/GeomData/GeomData_Point.h +++ b/src/GeomData/GeomData_Point.h @@ -1,8 +1,22 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: GeomData_Point.h -// Created: 24 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 GeomData_Point_H_ #define GeomData_Point_H_ @@ -35,6 +49,13 @@ class GeomData_Point : public GeomDataAPI_Point GEOMDATA_EXPORT virtual double y() const; /// Returns the Z double value GEOMDATA_EXPORT virtual double z() const; + /// Defines the X coordinate value + GEOMDATA_EXPORT void setX(const double theX); + /// Defines the Y coordinate value + GEOMDATA_EXPORT void setY(const double theY); + /// Defines the Z coordinate value + GEOMDATA_EXPORT void setZ(const double theZ); + /// Returns the 3D point GEOMDATA_EXPORT virtual std::shared_ptr pnt(); @@ -46,6 +67,12 @@ class GeomData_Point : public GeomDataAPI_Point GEOMDATA_EXPORT virtual void setText(const std::string& theX, const std::string& theY, const std::string& theZ); + /// Defines the X text value + GEOMDATA_EXPORT virtual void setTextX(const std::string& theX); + /// Defines the Y text value + GEOMDATA_EXPORT virtual void setTextY(const std::string& theY); + /// Defines the Z text value + GEOMDATA_EXPORT virtual void setTextZ(const std::string& theZ); /// Returns the X text value GEOMDATA_EXPORT virtual std::string textX();