Salome HOME
Update SketchPlugin_Projection feature (issue #1459)
[modules/shaper.git] / src / GeomDataAPI / GeomDataAPI_Point.h
index 0167f479b45c03a40b64febe575c82f79a93db26..ffa07285da1df05d445247c5f30eefba756d4aee 100644 (file)
@@ -44,11 +44,14 @@ class GeomDataAPI_Point : public ModelAPI_Attribute
                                           const std::string& theY,
                                           const std::string& theZ) = 0;
 
-  /// Returns the text values
+  /// Returns the text value for X
   GEOMDATAAPI_EXPORT virtual std::string textX() = 0;
+  /// Returns the text value for Y
   GEOMDATAAPI_EXPORT virtual std::string textY() = 0;
+  /// Returns the text value for Z
   GEOMDATAAPI_EXPORT virtual std::string textZ() = 0;
 
+  /// Point component (x,y,z)
   enum PointComponent { C_X = 0,
                         C_Y = 1,
                         C_Z = 2,