actionscript 3.0 を使用していますが、何が Transform クラスを提供するのかわかりません??
import flash.geom.Matrix;
var mat1:Matrix = new Matrix();
mat1.identity();
mat1.rotate(Math.PI/4);
mat1.scale(2,2);
mat1.translate(10,20);
私ができること:
var shape:Shape = new Shape();
shape.x = 50; //the same as the translate tx
shape.y = 50; //the same as the translate ty
shape.rotation = 45; // the same as the rotate
shape.scaleX = 20; // the same as the scale X in Matrix object
shape.scaleY = 30; // the same as the scale Y in Matrix object
または質問: マトリックス オブジェクト メソッドと、同じことを行う Shape、MovieClip、Sprite メソッドの違いは何ですか?