Given the following code: mat = mathutils.Matrix((1,2,3,4),(5,6,7,8),(9,10,11,12),(13,14,15,16)) print(str(mat))
The result is:
Matrix((1.000000, 5.000000, 9.000000, 13.000000), (2.000000, 6.000000, 10.000000 , 14.000000), (3.000000, 7.000000, 11.000000, 15.000000), (4.000000, 8.000000, 1 2.000000, 16.000000))
Wether or not this is intended or a bug, it is what causes the 3DS import bug reported earlier since the values are not initialized in the right order. |