当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Processing pop()用法及代码示例


Processing, pop()用法介绍。

用法

  • pop()

返回

  • void

说明

pop() 函数在push() 更改它们后恢复以前的绘图样式设置和转换。请注意,这些函数总是一起使用。它们允许您更改样式和转换设置,然后返回您所拥有的。当使用push() 启动新状态时,它会建立在当前样式和变换信息的基础上。



push() 存储与当前转换状态和样式设置相关的信息,这些信息由以下函数控制:rotate() , translate() , scale() , fill() , stroke() , tint() , strokeWeight() , strokeCap() , strokeJoin() , imageMode() , rectMode() , ellipseMode() , colorMode() , textAlign() , textFont() , textMode() , textSize() , textLeading()



处理 3.5 添加了 push()pop() 函数。它们可以用来代替 pushMatrix()popMatrix()pushStyles()popStyles() 。不同之处在于push() 和pop() 同时控制变换(旋转、缩放、平移)和绘图样式。

例子

ellipse(0, 200, 133, 133);  // Left circle

push(); 
strokeWeight(40);
fill(204, 153, 0);
ellipse(200, 200, 133, 133);  // Middle circle
pop();  // Restore original settings

ellipse(400, 200, 133, 133);  // Right circle
Image output for example 1
fill(255);
rect(0, 0, 200, 200);  // White rectangle

push();
translate(80, 70);
fill(0);  
rect(0, 0, 200, 200);  // Black rectangle
pop();  // Restore original settings

fill(100);  
rect(40, 40, 200, 200);  // Gray rectangle
Image output for example 2

有关的

相关用法


注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 pop()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。