Salome HOME
245f9b0f80c65732e8647226c8297493a8f54d71
[modules/shaper.git] / src / GeomDataAPI / GeomDataAPI_Point.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        GeomDataAPI_Point.h
4 // Created:     24 Apr 2014
5 // Author:      Mikhail PONIKAROV
6
7 #ifndef GeomDataAPI_Point_H_
8 #define GeomDataAPI_Point_H_
9
10 #include "GeomDataAPI.h"
11 #include <ModelAPI_Attribute.h>
12
13 class GeomAPI_Pnt;
14
15 /**\class GeomDataAPI_Point
16  * \ingroup DataModel
17  * \brief Attribute that contains 3D point coordinates. 
18  */
19
20 class GeomDataAPI_Point : public ModelAPI_Attribute
21 {
22  public:
23   /// Defines the double value
24   virtual void setValue(const double theX, const double theY, const double theZ) = 0;
25   /// Defines the point
26   virtual void setValue(const std::shared_ptr<GeomAPI_Pnt>& thePoint) = 0;
27
28   /// Returns the X double value
29   virtual double x() const = 0;
30   /// Returns the Y double value
31   virtual double y() const = 0;
32   /// Returns the Z double value
33   virtual double z() const = 0;
34   /// Returns the 3D point
35   virtual std::shared_ptr<GeomAPI_Pnt> pnt() = 0;
36
37   /// Returns the type of this class of attributes
38   static std::string typeId()
39   {
40     return std::string("Point");
41   }
42
43   /// Returns the type of this class of attributes, not static method
44   GEOMDATAAPI_EXPORT virtual std::string attributeType();
45
46  protected:
47   /// Objects are created for features automatically
48   GEOMDATAAPI_EXPORT GeomDataAPI_Point();
49   GEOMDATAAPI_EXPORT virtual ~GeomDataAPI_Point();
50 };
51
52 #endif