Salome HOME
Issue #1860: fix end lines with spaces
[modules/shaper.git] / src / GeomAPI / GeomAPI_XY.h
index 8fdf2853eacf5e51ea377e7ddfba5c24a893834c..c685c6ec07baf398b15a44d0e2068cff480b66f2 100644 (file)
@@ -19,42 +19,42 @@ class GeomAPI_XY : public GeomAPI_Interface
 {
  public:
   /// Creation by coordinates
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   GeomAPI_XY(const double theX, const double theY);
 
   /// returns X coordinate
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   double x() const;
   /// returns Y coordinate
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   double y() const;
 
   /// sets X coordinate
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   void setX(const double theX);
   /// sets Y coordinate
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   void setY(const double theY);
 
   /// result is sum of coordinates of this and the given argument
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   const std::shared_ptr<GeomAPI_XY> added(const std::shared_ptr<GeomAPI_XY>& theArg);
   /// result is difference between coordinates of this and the given argument
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   const std::shared_ptr<GeomAPI_XY> decreased(const std::shared_ptr<GeomAPI_XY>& theArg);
   /// result is coordinates multiplied by the argument
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   const std::shared_ptr<GeomAPI_XY> multiplied(const double theArg);
 
   /// result is a scalar product of two triplets
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   double dot(const std::shared_ptr<GeomAPI_XY>& theArg) const;
   /// result is a cross product of two triplets
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   double cross(const std::shared_ptr<GeomAPI_XY>& theArg) const;
 
   /// Distance between two pairs
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   double distance(const std::shared_ptr<GeomAPI_XY>& theOther) const;
 };