]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
Switch of method names.
authorageay <ageay>
Thu, 18 Feb 2010 07:27:50 +0000 (07:27 +0000)
committerageay <ageay>
Thu, 18 Feb 2010 07:27:50 +0000 (07:27 +0000)
src/INTERP_KERNEL/Interpolation.hxx

index f0eb37d58d982c42e0457a23a82611cfd873b2a7..25c00cb3707fcbf25aad2f8f98ef2475889ef30e 100644 (file)
@@ -44,9 +44,9 @@ namespace INTERP_KERNEL
     int interpolateMeshes(const MyMeshType& meshS, const MyMeshType& meshT, MatrixType& result)
     { return asLeaf().interpolateMeshes(meshS,meshT,result); }
     template<class MyMeshType, class MatrixType>
-    int fromIntegralUniform(const MyMeshType& meshT, MatrixType& result, const char *method) { return fromToIntegralUniform(true,meshT,result,method); }
+    int fromIntegralUniform(const MyMeshType& meshT, MatrixType& result, const char *method) { return fromToIntegralUniform(false,meshT,result,method); }
     template<class MyMeshType, class MatrixType>
-    int toIntegralUniform(const MyMeshType& meshS, MatrixType& result, const char *method) { return fromToIntegralUniform(false,meshS,result,method); }
+    int toIntegralUniform(const MyMeshType& meshS, MatrixType& result, const char *method) { return fromToIntegralUniform(true,meshS,result,method); }
     static void checkAndSplitInterpolationMethod(const char *method, std::string& srcMeth, std::string& trgMeth) throw(INTERP_KERNEL::Exception);
   protected:
     template<class MyMeshType, class MatrixType>