Salome HOME
Sketch line feature based on points attributes
[modules/shaper.git] / src / GeomDataAPI / GeomDataAPI_Point.h
1 // File:        GeomDataAPI_Point.h
2 // Created:     24 Apr 2014
3 // Author:      Mikhail PONIKAROV
4
5 #ifndef GeomDataAPI_Point_HeaderFile
6 #define GeomDataAPI_Point_HeaderFile
7
8 #include "GeomDataAPI.h"
9 #include <ModelAPI_Attribute.h>
10
11 /**\class GeomDataAPI_Point
12  * \ingroup DataModel
13  * \brief Attribute that contains 3D point coordinates. 
14  */
15
16 class GeomDataAPI_Point : public ModelAPI_Attribute
17 {
18 public:
19   /// Defines the double value
20   virtual void setValue(const double theX, const double theY, const double theZ) = 0;
21
22   /// Returns the X double value
23   virtual double x() const = 0;
24   /// Returns the Y double value
25   virtual double y() const = 0;
26   /// Returns the Z double value
27   virtual double z() const = 0;
28
29   /// Returns the type of this class of attributes
30   static inline std::string type() {return std::string("Point");}
31
32   /// Returns the type of this class of attributes, not static method
33   virtual std::string attributeType() {return type();}
34
35 protected:
36   /// Objects are created for features automatically
37   GeomDataAPI_Point()
38   {}
39 };
40
41 #endif