チェンジセット 603
- コミット日時:
- 2008/06/10 23:42:38 (4 年前)
- ファイル:
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
as3/Frocessing/trunk/src/frocessing/core/F5Graphics2D.as
r594 r603 150 150 * 151 151 */ 152 public function applayMatrix( a_:Number, b_:Number, c_:Number, d_:Number, tx_:Number, ty_:Number ):void 153 { 154 _matrix.m11 = a = a_; 155 _matrix.m12 = b = b_; 156 _matrix.m21 = c = c_; 157 _matrix.m22 = d = d_; 158 _matrix.m31 = tx = tx_; 159 _matrix.m32 = ty = ty_; 160 } 161 162 /** 163 * 164 */ 152 165 public function printMatrix():void 153 166 { … … 168 181 } 169 182 183 170 184 /** 171 185 * … … 182 196 * @param displayObj 183 197 */ 184 public function applyMatrix( displayObj:DisplayObject ):void198 public function transformObject( displayObj:DisplayObject ):void 185 199 { 186 200 displayObj.transform.matrix = new Matrix( a, b, c, d, tx, ty ); as3/Frocessing/trunk/src/frocessing/core/F5Graphics3D.as
r594 r603 715 715 } 716 716 717 /* 718 public function applayMatrix():void 719 { 720 721 } 722 */ 723 717 724 public function printMatrix():void 718 725 {

