[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [15286] branches/apricot/source/blender/ python/api2_2x/matrix.c: length of matrix was incorrect, some scripts may depend on this not sure if we can make the change in trunk .

Campbell Barton ideasman42 at gmail.com
Fri Jun 20 18:59:43 CEST 2008


Revision: 15286
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=15286
Author:   campbellbarton
Date:     2008-06-20 18:58:41 +0200 (Fri, 20 Jun 2008)

Log Message:
-----------
length of matrix was incorrect, some scripts may depend on this not sure if we can make the change in trunk.

Modified Paths:
--------------
    branches/apricot/source/blender/python/api2_2x/matrix.c

Modified: branches/apricot/source/blender/python/api2_2x/matrix.c
===================================================================
--- branches/apricot/source/blender/python/api2_2x/matrix.c	2008-06-20 11:19:59 UTC (rev 15285)
+++ branches/apricot/source/blender/python/api2_2x/matrix.c	2008-06-20 16:58:41 UTC (rev 15286)
@@ -483,7 +483,7 @@
   sequence length*/
 static int Matrix_len(MatrixObject * self)
 {
-	return (self->colSize * self->rowSize);
+	return (self->rowSize);
 }
 /*----------------------------object[]---------------------------
   sequence accessor (get)





More information about the Bf-blender-cvs mailing list