Salome HOME
Changes for modifying of GeomData objects by GeomAPI objects
[modules/shaper.git] / src / GeomData / GeomData_Point.h
1 // File:        GeomData_Point.h
2 // Created:     24 Apr 2014
3 // Author:      Mikhail PONIKAROV
4
5 #ifndef GeomData_Point_HeaderFile
6 #define GeomData_Point_HeaderFile
7
8 #include "GeomData.h"
9 #include "GeomDataAPI_Point.h"
10 #include <TDataStd_RealArray.hxx>
11 #include <TDF_Label.hxx>
12
13 /**\class GeomData_Point
14  * \ingroup DataModel
15  * \brief Attribute that contains 3D point.
16  */
17
18 class GeomData_Point : public GeomDataAPI_Point
19 {
20   Handle_TDataStd_RealArray myCoords; ///< X, Y and Z doubles as real array attribute [0; 2]
21 public:
22   /// Defines the double value
23   GEOMDATA_EXPORT virtual void setValue(const double theX, const double theY, const double theZ);
24   /// Defines the point
25   GEOMDATA_EXPORT virtual void setValue(const boost::shared_ptr<GeomAPI_Pnt>& thePoint);
26
27   /// Returns the X double value
28   GEOMDATA_EXPORT virtual double x() const;
29   /// Returns the Y double value
30   GEOMDATA_EXPORT virtual double y() const;
31   /// Returns the Z double value
32   GEOMDATA_EXPORT virtual double z() const;
33   /// Returns the 3D point
34   GEOMDATA_EXPORT virtual boost::shared_ptr<GeomAPI_Pnt> pnt();
35
36 protected:
37   /// Initializes attributes
38   GEOMDATA_EXPORT GeomData_Point(TDF_Label& theLabel);
39
40   friend class Model_Data;
41 };
42
43 #endif