]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
staffan :
authorvbd <vbd>
Mon, 10 Sep 2007 13:13:58 +0000 (13:13 +0000)
committervbd <vbd>
Mon, 10 Sep 2007 13:13:58 +0000 (13:13 +0000)
* doc updates

src/INTERP_KERNEL/TransformedTriangle.cxx

index 35528e788bd4bdc4fe0f92a6f5398f534cf64923..f44b813321b099255e20b8791cf26108bdaecb41 100644 (file)
@@ -39,7 +39,7 @@ public:
   }
 
   /**
-   * Comparison operator
+   * Comparison operator.
    * Compares the relative position between two points in their ordering around the barycenter.
    *
    * @param  pt1   a double[3] representing a point
@@ -57,11 +57,17 @@ public:
   }
 
 private:
-  /// indices of X, Y, Z coordinates in double[3] arrays to use : these depend on the projection plane
-  const int _aIdx, _bIdx;
+  /// index corresponding to first coordinate of plane on which points are projected
+  const int _aIdx;
+  
+  /// index corresponding to second coordinate of plane on which points are projected
+  const int _bIdx;
 
-  /// values of projected coordinates for barycenter
-  const double _a, _b;
+  /// value of first projected coordinate of the barycenter
+  const double _a;
+  
+  /// value of second projected coordinate of the barycenter
+  const double _b;
 };
 
 
@@ -225,7 +231,7 @@ namespace INTERP_UTILS
 
   /**
    * Calculates the intersection polygons A and B, performing the intersection tests
-   * and storing the corresponding points in the vectors _polygonA and _polygonB
+   * and storing the corresponding points in the vectors _polygonA and _polygonB.
    *
    * @post _polygonA contains the intersection polygon A and _polygonB contains the
    *       intersection polygon B.