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)
_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs