インフォ FAQ
言語 環境比較
 
Index
 
  Processing 1.0 _ALPHAリファレンスは開発途中である。
もしエラーやコメントがあれば、reas at groupc.netへメールして下さい。
Name  

pop()

   
Examples  
rect(0, 0, 50, 50);   //白い四角形 
push(); 
translate(30, 20); 
fill(0);  
rect(0, 0, 50, 50);   //黒い四角形
pop(); 
fill(102);  
rect(15, 10, 50, 50); //グレーの四角形
Description  

現在の変換マトリクスをマトリックススタックへポップする。push()pop()を理解するには、まずマトリックススタック理論を理解しなければいけない。push() 機能は、今の座標をスタックに保存して、pop()は前の座標を復元する。 push()pop()は、その他の移動メソッドとの組み合わせにおいて使われる。また、移動する領域をコントロールするのに組み込まれる。

 

   
Syntax  
pop()
   
Returns   なし
   
Usage   Web & Application
   
Related   push()
   
© 2004- 2001 Massachusetts Institute of Technology and Interaction Design Institute Ivrea
Processing is an open project initiated by Ben Fry and Casey Reas