is there a way to access a column with mathutil and how ?
like i can print a row like this
newMat = mathutils.Matrix(((1, 2, 3, 4),
(0,-3,4, 5),
(0,-2, -1, 3) ,
(0,-6.5, -2, 1)))
print ('Matrix newMat= ',newMat)
print ()
print ('Matrix newMat[0]= ',newMat[0])
print ()
any good tut on the latest in 2.5 for mathutil?
thanks
happy 2.5
)