[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [60934] trunk/blender/source/blender: correct typo

Campbell Barton ideasman42 at gmail.com
Sat Oct 26 00:12:06 CEST 2013


Revision: 60934
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=60934
Author:   campbellbarton
Date:     2013-10-25 22:12:05 +0000 (Fri, 25 Oct 2013)
Log Message:
-----------
correct typo

Modified Paths:
--------------
    trunk/blender/source/blender/blenkernel/intern/tracking.c
    trunk/blender/source/blender/blenlib/BLI_math_matrix.h
    trunk/blender/source/blender/blenlib/intern/math_matrix.c

Modified: trunk/blender/source/blender/blenkernel/intern/tracking.c
===================================================================
--- trunk/blender/source/blender/blenkernel/intern/tracking.c	2013-10-25 22:09:31 UTC (rev 60933)
+++ trunk/blender/source/blender/blenkernel/intern/tracking.c	2013-10-25 22:12:05 UTC (rev 60934)
@@ -3324,7 +3324,7 @@
 
 		libmv_homography2DFromCorrespondencesEuc(x1, x2, num_correspondences, H_double);
 
-		copt_m3_m3d(H, H_double);
+		copy_m3_m3d(H, H_double);
 
 		for (i = 0; i < 4; i++) {
 			float vec[3] = {0.0f, 0.0f, 1.0f}, vec2[3];
@@ -3428,7 +3428,7 @@
 
 	libmv_homography2DFromCorrespondencesEuc(x1, x2, 4, H_double);
 
-	copt_m3_m3d(H, H_double);
+	copy_m3_m3d(H, H_double);
 }
 
 /*********************** Camera solving *************************/

Modified: trunk/blender/source/blender/blenlib/BLI_math_matrix.h
===================================================================
--- trunk/blender/source/blender/blenlib/BLI_math_matrix.h	2013-10-25 22:09:31 UTC (rev 60933)
+++ trunk/blender/source/blender/blenlib/BLI_math_matrix.h	2013-10-25 22:12:05 UTC (rev 60934)
@@ -61,7 +61,7 @@
 void copy_m4_m3(float R[4][4], float A[3][3]);
 
 /* double->float */
-void copt_m3_m3d(float R[3][3], double A[3][3]);
+void copy_m3_m3d(float R[3][3], double A[3][3]);
 
 void swap_m3m3(float A[3][3], float B[3][3]);
 void swap_m4m4(float A[4][4], float B[4][4]);

Modified: trunk/blender/source/blender/blenlib/intern/math_matrix.c
===================================================================
--- trunk/blender/source/blender/blenlib/intern/math_matrix.c	2013-10-25 22:09:31 UTC (rev 60933)
+++ trunk/blender/source/blender/blenlib/intern/math_matrix.c	2013-10-25 22:12:05 UTC (rev 60934)
@@ -112,7 +112,7 @@
 
 }
 
-void copt_m3_m3d(float R[3][3], double A[3][3])
+void copy_m3_m3d(float R[3][3], double A[3][3])
 {
 	/* Keep it stupid simple for better data flow in CPU. */
 	R[0][0] = A[0][0];




More information about the Bf-blender-cvs mailing list