Salome HOME
Issue #1860: fix end lines with spaces
[modules/shaper.git] / src / GeomAPI / GeomAPI_Ax3.h
index 589fbf70dd4f8ba79c556f696ace79c7e780ecfa..47cbb2a4a2128414187b9d52fc101e30ca9d8430 100644 (file)
@@ -20,61 +20,61 @@ class GeomAPI_Ax3 : public GeomAPI_Interface
 {
 public:
   /// Default constructor
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   GeomAPI_Ax3();
 
   /// Constructor
   /// \param theOrigin point of origin
   /// \param theDirX direction of X axis
   /// \param theNorm direction of normal vector
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   GeomAPI_Ax3(std::shared_ptr<GeomAPI_Pnt> theOrigin,
               std::shared_ptr<GeomAPI_Dir> theDirX,
               std::shared_ptr<GeomAPI_Dir> theNorm);
 
   /// Sets origin point
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   void setOrigin(const std::shared_ptr<GeomAPI_Pnt>& theOrigin);
 
   /// Returns the plane origin point
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   std::shared_ptr<GeomAPI_Pnt> origin() const;
 
   /// Sets X direction vector
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   void setDirX(const std::shared_ptr<GeomAPI_Dir>& theDirX);
 
   /// Returns X direction vector
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   std::shared_ptr<GeomAPI_Dir> dirX() const;
 
   /// Sets Y direction vector
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   void setDirY(const std::shared_ptr<GeomAPI_Dir>& theDirY);
 
   /// Returns Y direction vector
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   std::shared_ptr<GeomAPI_Dir> dirY() const;
 
   /// Sets Z direction vector
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   void setNormal(const std::shared_ptr<GeomAPI_Dir>& theNorm);
 
   /// Returns Z direction vector
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   std::shared_ptr<GeomAPI_Dir> normal() const;
 
   /// Converts 2d coordinates from the plane to 3d space point
   /// \param theX X coordinate
   /// \param theY Y coordinate
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   std::shared_ptr<GeomAPI_Pnt> to3D(double theX, double theY) const;
 
   /// Converts 3d  to 2d coordinates of the plane
   /// \param theX X coordinate
   /// \param theY Y coordinate
   /// \param theZ Z coordinate
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   std::shared_ptr<GeomAPI_Pnt2d> to2D(double theX, double theY, double theZ) const;
 
 };