]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
Some little docs.
authorageay <ageay>
Fri, 30 Sep 2011 09:30:48 +0000 (09:30 +0000)
committerageay <ageay>
Fri, 30 Sep 2011 09:30:48 +0000 (09:30 +0000)
src/INTERP_KERNEL/Interpolation2D1D.hxx
src/INTERP_KERNEL/Interpolation3D2D.hxx

index 522322cb171214c842e80d5caf9a9a47cae05cda..c9809ee513bf334f0fc6db48bf31d98c6b918c2c 100644 (file)
 
 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<Interpolation2D1D>
   {
   public:
index f68a3b6726d7af744d7b2beb19da381219537f07..aebe27d7726b5a0b48c99984b55959cd291e11ff 100644 (file)
 
 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<Interpolation3D2D>
   {
   public: