チェンジセット 1823

差分発生行の前後
無視リスト:
コミット日時:
2008/11/13 02:03:13 (2 ヶ月前)
コミッタ:
tarotarorg
ログメッセージ:

toString()追加

ファイル:

凡例:

変更無し
追加
削除
更新
コピー
移動
  • as3/FLARToolKit/trunk/src/org/libspark/flartoolkit/core/labeling/FLARLabelingLabel.as

    r1630 r1823  
    1 /*  
     1/*  
    22 * PROJECT: FLARToolKit 
    33 * -------------------------------------------------------------------------------- 
     
    4141                public var pos_x:Number; 
    4242                public var pos_y:Number; 
     43                 
     44                public function toString():String  
     45                { 
     46                        return "{id:" + id + ",area:" + area + ",clip_r:" + clip_r +  
     47                                        ",clip_l:" + clip_l + ",clip_b:" + clip_b +  
     48                                        ",clip_t:" + clip_t +",pos_x:" + pos_x + ",pos_y:" + pos_y; 
     49                                         
     50                } 
    4351        } 
    4452} 
  • as3/FLARToolKit/trunk/src/org/libspark/flartoolkit/core/transmat/rotmatrix/FLARRotMatrix.as

    r1630 r1823  
    1 /*  
     1/*  
    22 * PROJECT: FLARToolKit 
    33 * -------------------------------------------------------------------------------- 
  • as3/FLARToolKit/trunk/src/org/libspark/flartoolkit/core/types/FLARIntPoint.as

    r1630 r1823  
    1 /*  
     1/*  
    22 * PROJECT: FLARToolKit 
    33 * -------------------------------------------------------------------------------- 
     
    3636 
    3737                public var y:int; 
     38                 
     39                public function toString():String  
     40                { 
     41                        return "(" + this.x + " , " + this.y + ")"; 
     42                } 
    3843        } 
    3944}