From: ageay Date: Fri, 30 Sep 2011 09:30:48 +0000 (+0000) Subject: Some little docs. X-Git-Tag: V6_main_FINAL~940 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=e160d6a79a50bf16cab1f28d198b76e7a0037573;p=tools%2Fmedcoupling.git Some little docs. --- diff --git a/src/INTERP_KERNEL/Interpolation2D1D.hxx b/src/INTERP_KERNEL/Interpolation2D1D.hxx index 522322cb1..c9809ee51 100644 --- a/src/INTERP_KERNEL/Interpolation2D1D.hxx +++ b/src/INTERP_KERNEL/Interpolation2D1D.hxx @@ -27,6 +27,15 @@ namespace INTERP_KERNEL { + /*! + * Contrary to its name this class deals with 1D mesh in source and 2D mesh in target. + * The meshdim of 'MyMeshType' in input is ignored that's why 'meshS' and 'meshT' + * have the same type. + * '_duplicate_faces' attribute stores duplicated faces in the following format. + * The key of '_duplicate_faces' represents the 1D cellId that is shared by + * more than one 2D target cell, and the value of '_duplicate_faces' + * the 2D target cells. The size of the value of '_duplicate_faces' is more than or equal to 2. + */ class Interpolation2D1D : public Interpolation { public: diff --git a/src/INTERP_KERNEL/Interpolation3D2D.hxx b/src/INTERP_KERNEL/Interpolation3D2D.hxx index f68a3b672..aebe27d77 100644 --- a/src/INTERP_KERNEL/Interpolation3D2D.hxx +++ b/src/INTERP_KERNEL/Interpolation3D2D.hxx @@ -29,6 +29,15 @@ namespace INTERP_KERNEL { + /*! + * Contrary to its name this class deals with 2D mesh in source and 3D mesh in target. + * The meshdim of 'MyMeshType' in input is ignored that's why 'meshS' and 'meshT' + * have the same type. + * '_duplicate_faces' attribute stores duplicated faces in the following format. + * The key of '_duplicate_faces' represents the 2D cellId that is shared by + * more than one 3D target cell, and the value of '_duplicate_faces' + * the 3D target cells. The size of the value of '_duplicate_faces' is more than or equal to 2. + */ class Interpolation3D2D : public Interpolation { public: