LoginSignup
1
0

More than 5 years have passed since last update.

2DMatrixのrotate、scaleメソッドを使う時の注意

Posted at

SDKバージョン1.8.2での話。
create2DMatrixでオブジェクトを作ってrotate、scaleメソッドでアニメーションポイントを指定するとき

    var t = Ti.UI.create2DMatrix();
    t.scale(1.5);
    t.rotate(20);

と、すると動かない。

    var t = Ti.UI.create2DMatrix().scale(1.5).rotate(20);

と、すると動く。

なぜだ( ;∀;)

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0