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


Processing pushMatrix()用法及代码示例


Processing, pushMatrix()用法介绍。

用法

  • pushMatrix()

返回

  • void

说明

将当前变换矩阵推入矩阵堆栈。了解pushMatrix()popMatrix() 需要了解矩阵堆栈的概念。 pushMatrix() 函数将当前坐标系保存到堆栈中,popMatrix() 恢复之前的坐标系。 pushMatrix()popMatrix() 与其他转换函数一起使用,并且可以嵌入以控制转换的范围。

例子

size(400, 400);

fill(255);
rect(0, 0, 200, 200);  // White rectangle

pushMatrix();
translate(120, 80);
fill(0);  
rect(0, 0, 200, 200);  // Black rectangle
popMatrix();

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

相关用法


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