From: ageay Date: Thu, 18 Feb 2010 07:27:50 +0000 (+0000) Subject: Switch of method names. X-Git-Tag: V5_1_main_FINAL~204 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=5b4b0b9799a74ac3e1a1816f67acdac6022e54bc;p=tools%2Fmedcoupling.git Switch of method names. --- diff --git a/src/INTERP_KERNEL/Interpolation.hxx b/src/INTERP_KERNEL/Interpolation.hxx index f0eb37d58..25c00cb37 100644 --- a/src/INTERP_KERNEL/Interpolation.hxx +++ b/src/INTERP_KERNEL/Interpolation.hxx @@ -44,9 +44,9 @@ namespace INTERP_KERNEL int interpolateMeshes(const MyMeshType& meshS, const MyMeshType& meshT, MatrixType& result) { return asLeaf().interpolateMeshes(meshS,meshT,result); } template - 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 - 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