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


Processing pushStyle()用法及代码示例


Processing, pushStyle()用法介绍。

用法

  • pushStyle()

返回

  • void

说明

pushStyle() 函数保存当前样式设置,popStyle() 恢复之前的设置。请注意,这些函数总是一起使用。它们允许您更改样式设置,然后返回到您所拥有的。当使用 pushStyle() 启动新样式时,它会建立在当前样式信息的基础上。可以嵌入 pushStyle()popStyle() 函数以提供更多控制(参见上面的第二个示例进行演示。)



样式中包含以下函数控制的样式信息:fill(), stroke(), tint(), strokeWeight(), strokeCap(),strokeJoin(), imageMode(), rectMode(), ellipseMode(), shapeMode(), colorMode(), textAlign(), textFont(), textMode(), textSize(), textLeading(), emissive(), specular(), shininess(), ambient()

例子

size(400, 400);

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

pushStyle();  // Start a new style
strokeWeight(40);
fill(204, 153, 0);
ellipse(200, 200, 132, 132);  // Middle circle
popStyle();  // Restore original style

ellipse(400, 200, 132, 132);  // Right circle
Image output for example 1
size(400, 400);

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

pushStyle();  // Start a new style
strokeWeight(40);
fill(204, 153, 0);
ellipse(132, 200, 132, 132);  // Left-middle circle

pushStyle();  // Start another new style
stroke(0, 102, 153);
ellipse(264, 200, 132, 132);  // Right-middle circle
popStyle();  // Restore the previous style

popStyle();  // Restore original style

ellipse(400, 200, 132, 132);  // Right circle
Image output for example 2

有关的

相关用法


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