consider the following code:
var t:Matrix3D = new Matrix3D(
new Vector.<Number>([1,0,0,0,0,1,0,0,0,0,1,0,10,10,0,1])
);
trace(t.rawData[12]);
the trace command will print “0” for me, and it is visible with debugger that rawData contains an identity matrix actually. I simply can not set the values contained by Matrix3D!
I’m using flash 11.2.
Thanks, for any help!
Pretty sure your syntax for creating a pre-filled Vector is wrong.
You should have:
Instead of:
Demo: