From: vbd Date: Mon, 10 Sep 2007 13:13:58 +0000 (+0000) Subject: staffan : X-Git-Tag: trio_trio_coupling~48 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=1ef7b3d2ef300c4995761d17747dcb18e4ce647f;p=tools%2Fmedcoupling.git staffan : * doc updates --- diff --git a/src/INTERP_KERNEL/TransformedTriangle.cxx b/src/INTERP_KERNEL/TransformedTriangle.cxx index 35528e788..f44b81332 100644 --- a/src/INTERP_KERNEL/TransformedTriangle.cxx +++ b/src/INTERP_KERNEL/TransformedTriangle.cxx @@ -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.