チェンジセット 603

差分発生行の前後
無視リスト:
コミット日時:
2008/06/10 23:42:38 (4 年前)
コミッタ:
nutsu
ログメッセージ:

--

ファイル:

凡例:

変更無し
追加
削除
更新
コピー
移動
  • as3/Frocessing/trunk/src/frocessing/core/F5Graphics2D.as

    r594 r603  
    150150                 *  
    151151                 */ 
     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                 */ 
    152165                public function printMatrix():void 
    153166                { 
     
    168181                } 
    169182                 
     183                 
    170184                /** 
    171185                 *  
     
    182196                 * @param       displayObj 
    183197                 */ 
    184                 public function applyMatrix( displayObj:DisplayObject ):void 
     198                public function transformObject( displayObj:DisplayObject ):void 
    185199                { 
    186200                        displayObj.transform.matrix = new Matrix( a, b, c, d, tx, ty ); 
  • as3/Frocessing/trunk/src/frocessing/core/F5Graphics3D.as

    r594 r603  
    715715                } 
    716716                 
     717                /* 
     718                public function applayMatrix():void 
     719                { 
     720                         
     721                } 
     722                */ 
     723                 
    717724                public function printMatrix():void 
    718725                {