See attached image. I've connected a transform node to a grid node, nothing is changed, and therefore I should be getting the identity matrix in the "transform" attribute.
Attribute result:
[ 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ]
This is incorrect (missing a 1), the correct matrix would be:
[ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ]
Any idea how to fix this?
* I'm using the matrix later on via python for other stuff.