Thinking primarily about animate(). It would be nice to do something like this:
STYLE = {loop:true, rewind:true}
new Circle().center().animate({scale:2});
I don't think we want to run every method through style... drag() might be handy too..
STYLE = {onTop:false}
new Tile(new Rectangle(50,50,series(orange,black), 10,10).center().drag();
Possibly, this is a different thing than style. Does style the animation to loop sound right? Usually you style an object, not a verb... but I think it is close enough, and the system is already in place. May as well try it out and see if it works.