Salome HOME
ee319e89e53ad505005fac78e7eed5cd396af140
[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
25   /// Returns the X double value
26   GEOMDATA_EXPORT virtual double x() const;
27   /// Returns the Y double value
28   GEOMDATA_EXPORT virtual double y() const;
29   /// Returns the Z double value
30   GEOMDATA_EXPORT virtual double z() const;
31   /// Returns the 3D point
32   GEOMDATA_EXPORT virtual boost::shared_ptr<GeomAPI_Pnt> pnt();
33
34 protected:
35   /// Initializes attributes
36   GEOMDATA_EXPORT GeomData_Point(TDF_Label& theLabel);
37
38   friend class Model_Data;
39 };
40
41 #endif