Salome HOME
4b3d4671c43dcf0c85d70f82669a25aa3e153da1
[modules/shaper.git] / src / GeomData / GeomData_Point2D.h
1 // File:        GeomData_Point2D.h
2 // Created:     24 Apr 2014
3 // Author:      Mikhail PONIKAROV
4
5 #ifndef GeomData_Point2D_HeaderFile
6 #define GeomData_Point2D_HeaderFile
7
8 #include "GeomData.h"
9 #include "GeomDataAPI_Point2D.h"
10 #include <TDataStd_RealArray.hxx>
11 #include <TDF_Label.hxx>
12
13 /**\class GeomData_Point2D
14  * \ingroup DataModel
15  * \brief Attribute that contains 2D point.
16  */
17
18 class GeomData_Point2D : public GeomDataAPI_Point2D
19 {
20   Handle_TDataStd_RealArray myCoords; ///< X and Y doubles as real array attribute [0; 1]
21 public:
22   /// Defines the double value
23   GEOMDATA_EXPORT virtual void setValue(const double theX, const double theY);
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
30 protected:
31   /// Initializes attributes
32   GEOMDATA_EXPORT GeomData_Point2D(TDF_Label& theLabel);
33
34   friend class Model_Data;
35 };
36
37 #endif