default order is: 1. translate 2. rotate 3. scale ``` uv.Actor.prototype.tWorld = function() { return uv.Matrix() .concat(this.tWorldParent()) .translate(this.p('x'), this.p('y')) .rotate(this.p('rotation')) .scale(this.p('scaleX'), this.p('scaleY')); }; ```