Salome HOME
Issue #1860: fix end lines with spaces
[modules/shaper.git] / src / GeomAPI / GeomAPI_Dir2d.h
index 2e8cc227edcd8b3dee098e78d33de18f7322118b..812904d721a1c93b3122689645f7aeacc8dd8fd0 100644 (file)
@@ -21,35 +21,35 @@ class GeomAPI_Dir2d : public GeomAPI_Interface
 {
  public:
   /// Creation of direction by coordinates
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   GeomAPI_Dir2d(const double theX, const double theY);
   /// Creation of direction by coordinates
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   GeomAPI_Dir2d(const std::shared_ptr<GeomAPI_XY>& theCoords);
 
   /// returns X coordinate
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   double x() const;
   /// returns Y coordinate
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   double y() const;
 
   /// returns coordinates of the direction
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   const std::shared_ptr<GeomAPI_XY> xy();
 
   /// inverses the direction
   GEOMAPI_EXPORT void reverse();
 
   /// result is a scalar product of directions
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   double dot(const std::shared_ptr<GeomAPI_Dir2d>& theArg) const;
   /// result is a cross product of two directions
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   double cross(const std::shared_ptr<GeomAPI_Dir2d>& theArg) const;
 
   /// calculates angle between two directions
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   double angle(const std::shared_ptr<GeomAPI_Dir2d>& theArg) const;
 };