timelinefx:timelinefx.tlMatrix2.Set
Method Set:Void( _aa:Float=1, _ab:Float=0, _ba:Float=0, _bb:Float=1 )
Set the matrix to a new set of values Use this to prepare the matrix for a new transform. For example if you wanted to to rotate a vector, then you could do matrix.set(cos(angle),sin(angle),-sin(angle),cos(angle)) and then transform the vector with matrix.transformvector(vector)