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


Processing PGraphics.endDraw()用法及代碼示例


Processing, 類PGraphics中的endDraw()用法介紹。

用法

  • graphics.endDraw()

參數

  • graphics (PGraphics) PGraphics 類型的任何對象

返回

  • void

說明

完成 PGraphics 對象的渲染,以便它可以顯示在屏幕上。

例子

PGraphics pg;

void setup() {
  size(100, 100);
  pg = createGraphics(80, 80, P2D);
  pg.beginDraw();
  pg.background(102);
  pg.stroke(255);
  pg.line(20, 20, 80, 80);
  pg.endDraw();
  noLoop();
}

void draw() {
  image(pg, 10, 10); 
}

相關用法


注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 PGraphics.endDraw()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。