In v2 the complex-sounding translateScaleRotate was removed and replaced by match() method. The name 'move' was dropped because the ambiguity. For example item.move(target) can mean either:
translate item to target
translate, scale and rotate the item to match the target
move the target by the item
move the target if the item moves
Therfore use of general move sounds a bad decision.
In v2 the complex-sounding translateScaleRotate was removed and replaced by match() method. The name 'move' was dropped because the ambiguity. For example
item.move(target)
can mean either:Therfore use of general
move
sounds a bad decision.