[QGIS Commit] r13992 - trunk/qgis/src/plugins/georeferencer

svn_qgis at osgeo.org svn_qgis at osgeo.org
Sun Aug 1 13:35:51 EDT 2010


Author: mmassing
Date: 2010-08-01 17:35:51 +0000 (Sun, 01 Aug 2010)
New Revision: 13992

Modified:
   trunk/qgis/src/plugins/georeferencer/qgsleastsquares.cpp
Log:
Indentation cleanups, before jef beats me to it :-)

Modified: trunk/qgis/src/plugins/georeferencer/qgsleastsquares.cpp
===================================================================
--- trunk/qgis/src/plugins/georeferencer/qgsleastsquares.cpp	2010-08-01 17:28:41 UTC (rev 13991)
+++ trunk/qgis/src/plugins/georeferencer/qgsleastsquares.cpp	2010-08-01 17:35:51 UTC (rev 13992)
@@ -316,8 +316,8 @@
 
   // Change coordinate frame of image and pre-image from normalized to map and pixel coordinates.
   // H' = denormalizeMapCoords*H*normalizePixelCoords
-  gsl_blas_dgemm(CblasNoTrans, CblasNoTrans, 1.0, &Hmatrix.matrix, &normPixelMatrix.matrix, 0.0, prodMatrix );
-  gsl_blas_dgemm(CblasNoTrans, CblasNoTrans, 1.0, &denormMapMatrix.matrix, prodMatrix, 0.0, &Hmatrix.matrix );
+  gsl_blas_dgemm( CblasNoTrans, CblasNoTrans, 1.0, &Hmatrix.matrix, &normPixelMatrix.matrix, 0.0, prodMatrix );
+  gsl_blas_dgemm( CblasNoTrans, CblasNoTrans, 1.0, &denormMapMatrix.matrix, prodMatrix, 0.0, &Hmatrix.matrix );
 
   gsl_matrix_free( prodMatrix );
   gsl_matrix_free( S );



More information about the QGIS-commit mailing list