當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。