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


Processing clear()用法及代码示例


Processing, clear()用法介绍。

用法

  • clear()

返回

  • void

说明

清除缓冲区内的像素。此函数仅适用于使用 createGraphics() 函数创建的 PGraphics 对象。与主图形上下文(显示窗口)不同,使用createGraphics() 创建的附加图形区域中的像素可以完全或部分透明。此函数清除 PGraphics 对象中的所有内容,以使所有像素 100% 透明。

例子

PGraphics pg;

void setup() {
  size(200, 200);
  pg = createGraphics(width, height);
}

void draw() {
  background(204);
  
  // Clear the PGraphics when the mouse is pressed
  if (mousePressed == true) {
    pg.beginDraw(); 
    pg.clear();
    pg.endDraw();
  } else {
    pg.beginDraw();
    pg.stroke(0, 102, 153);
    pg.line(width/2, height/2, mouseX, mouseY);
    pg.endDraw();
  }

  image(pg, 0, 0);
}

相关用法


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