Is there a way to initialized a rotated rectangle without animating its rotation first?
stage = new createjs.Stage("demoCanvas");
//Create a Shape DisplayObject.
rect = new createjs.Shape();
rect.graphics.beginFill("red").drawRect(100, 100, 40, 40);//these are the x, y, w, and h. But no arguments for rotating?
Thanks,