I am trying to get a partial bitmap from an object but I am getting different values from:
object.transform.matrix.tx and object.transform.matrix.ty
v/s
object.getBounds(object.parent).x and object.getBounds(object.parent).y
I am not sure which ones should I use while drawing the bitmapdata:
bitmapdata.draw(object, <matrix>);
To add the a,b,c,d components of matrix are 1,0,0,1 (or identity). So Can someone explain in which scenarios are matrix.tx and matrix.ty different from bounds coordinates?