]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
staffan : * doc updates
authorvbd <vbd>
Mon, 10 Sep 2007 10:35:20 +0000 (10:35 +0000)
committervbd <vbd>
Mon, 10 Sep 2007 10:35:20 +0000 (10:35 +0000)
src/INTERP_KERNEL/TetraAffineTransform.cxx
src/INTERP_KERNEL/TetraAffineTransform.hxx

index a7d70e13537da62ab2f7274052d52b10691c94a2..2315f89df66bcd055747067a87903aa9463d40d6 100644 (file)
@@ -128,7 +128,7 @@ namespace INTERP_UTILS
   }
 
   /**
-   * Gives the determinant of the linear part of the transform
+   * Returns the determinant of the linear part A of the transform.
    *
    * @return determinant of the transform
    *
@@ -228,6 +228,12 @@ namespace INTERP_UTILS
     _determinant = _linearTransform[0] * subDet[0] - _linearTransform[1] * subDet[1] + _linearTransform[2] * subDet[2]; 
   }
 
+  
+  /////////////////////////////////////////////////
+  /// Auxiliary methods for inverse calculation ///
+  /////////////////////////////////////////////////
+
+
   /**
    * Calculates the LU-factorization of the matrix A (_linearTransform)
    * and stores it in lu. Since partial pivoting is used, there are 
index a097923a7f48766cac492bacdf5eae07777a0249..7a029b973edce5f38846ba33996193ef8e9a83e1 100644 (file)
@@ -29,10 +29,6 @@ namespace INTERP_UTILS
 
     void calculateDeterminant();
 
-    /////////////////////////////////////////////////
-    /// Auxiliary methods for inverse calculation ///
-    /////////////////////////////////////////////////
-
     void factorizeLU(double* lu, int* idx) const;
       
     void forwardSubstitution(double* x, const double* lu, const double* b, const int* idx) const;