Salome HOME
Debug (Google style).
authorClarisse Genrault <clarisse.genrault@cea.fr>
Thu, 5 Jan 2017 07:29:27 +0000 (08:29 +0100)
committerClarisse Genrault <clarisse.genrault@cea.fr>
Thu, 5 Jan 2017 07:29:27 +0000 (08:29 +0100)
src/GeomAlgoAPI/GeomAlgoAPI_ShapeAPI.cpp
src/GeomAlgoAPI/GeomAlgoAPI_ShapeAPI.h
src/GeomAlgoAPI/GeomAlgoAPI_Symmetry.cpp

index 185a2ca8b9b9010a83873b26c87d690dfb546c4c..f738e5c41b59bcce2c192b26806b6d28816cdf6c 100644 (file)
@@ -134,7 +134,7 @@ namespace GeomAlgoAPI_ShapeAPI
     std::shared_ptr<GeomAPI_Pnt>   thePoint) throw (GeomAlgoAPI_Exception)
   {
     GeomAlgoAPI_Symmetry aSymmetryAlgo(theSourceShape, thePoint);
-    
+
     if (!aSymmetryAlgo.check()) {
       throw GeomAlgoAPI_Exception(aSymmetryAlgo.getError());
     }
@@ -156,7 +156,7 @@ namespace GeomAlgoAPI_ShapeAPI
     std::shared_ptr<GeomAPI_Ax1>   theAxis) throw (GeomAlgoAPI_Exception)
   {
     GeomAlgoAPI_Symmetry aSymmetryAlgo(theSourceShape, theAxis);
-    
+
     if (!aSymmetryAlgo.check()) {
       throw GeomAlgoAPI_Exception(aSymmetryAlgo.getError());
     }
@@ -178,7 +178,7 @@ namespace GeomAlgoAPI_ShapeAPI
     std::shared_ptr<GeomAPI_Ax2>   thePlane) throw (GeomAlgoAPI_Exception)
   {
     GeomAlgoAPI_Symmetry aSymmetryAlgo(theSourceShape, thePlane);
-    
+
     if (!aSymmetryAlgo.check()) {
       throw GeomAlgoAPI_Exception(aSymmetryAlgo.getError());
     }
index da69e20d41b51ad4b7dd1d5595c78e53e2f38317..fbed6c1cc33c661397afc31507d25f08f3e60911 100644 (file)
@@ -70,7 +70,7 @@ public:
                      std::shared_ptr<GeomAPI_Shape> theSourceShape,
                      std::shared_ptr<GeomAPI_Pnt>   theStartPoint,
                      std::shared_ptr<GeomAPI_Pnt>   theEndPoint) throw (GeomAlgoAPI_Exception);
-                     
+
   /// Performs a symmetry by a point
   static std::shared_ptr<GeomAPI_Shape> makeSymmetry(
                      std::shared_ptr<GeomAPI_Shape> theSourceShape,
index e8f4db197687fd73eb40d16a4b6449e8992e0eb2..dedd3caa91e66d244c419f4b8af0e05ba79feb75 100644 (file)
@@ -105,9 +105,9 @@ void GeomAlgoAPI_Symmetry::build()
       return;
     }
   }
-  
+
   const TopoDS_Shape& aSourceShape = mySourceShape->impl<TopoDS_Shape>();
-  
+
   if(aSourceShape.IsNull()) {
     myError = "Mirror builder :: source shape does not contain any actual shape.";
     return;