[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [47539] branches/soc-2012-swiss_cheese/ source/blender/blenlib/intern/math_matrix.c: Fixed bug

Alexander Kuznetsov kuzsasha at gmail.com
Wed Jun 6 22:01:12 CEST 2012


Revision: 47539
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=47539
Author:   alexk
Date:     2012-06-06 20:01:08 +0000 (Wed, 06 Jun 2012)
Log Message:
-----------
Fixed bug
Function takes m1, m3, m2 instead of  m1, m2, m3

Modified Paths:
--------------
    branches/soc-2012-swiss_cheese/source/blender/blenlib/intern/math_matrix.c

Modified: branches/soc-2012-swiss_cheese/source/blender/blenlib/intern/math_matrix.c
===================================================================
--- branches/soc-2012-swiss_cheese/source/blender/blenlib/intern/math_matrix.c	2012-06-06 19:49:25 UTC (rev 47538)
+++ branches/soc-2012-swiss_cheese/source/blender/blenlib/intern/math_matrix.c	2012-06-06 20:01:08 UTC (rev 47539)
@@ -176,7 +176,7 @@
 	copy_m4_m4(m3, m3_);
 
 	/* matrix product: m1[j][k] = m2[j][i].m3[i][k] */
-	mult_m4_m4m4_q(m1, m2, m3);
+	mult_m4_m4m4_q(m1, m3, m2);
 
 }
 




More information about the Bf-blender-cvs mailing list