]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/GeomAlgoAPI/GeomAlgoAPI_Box.h
Salome HOME
Issue #1860: fix end lines with spaces
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_Box.h
index 23bcb8d350c40b66532c8cea836d9c20a069129e..4f772eed40cea54cee2e38c8ae1780abef0ff87b 100644 (file)
  */
 class GeomAlgoAPI_Box : public GeomAlgoAPI_MakeShape
 {
- public: 
+ public:
   GEOMALGOAPI_EXPORT GeomAlgoAPI_Box();
-  
+
   /// Creates a box using the dimensions.
   /// \param theDx The dimension on X
   /// \param theDy The dimension on Y
   /// \param theDz The dimension on Z
   GEOMALGOAPI_EXPORT GeomAlgoAPI_Box(const double theDx, const double theDy, const double theDz);
-  
+
   /// Checks if each dimension "Dx", Dy" and "Dz" for the box construction is OK.
   GEOMALGOAPI_EXPORT bool check();
-  
+
   /// Builds the box with the dimensions "Dx", "Dy" and "Dz".
   GEOMALGOAPI_EXPORT void build();
-  
+
   /// Prepare the naming (redifined because it is specific for a box).
   GEOMALGOAPI_EXPORT void prepareNamingFaces();
-  
+
  private:
   double myDx; /// Dimension on X to create a box.
   double myDy; /// Dimension on Y to create a box.