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


Processing PGraphics.beginDraw()用法及代码示例


Processing, 类PGraphics中的beginDraw()用法介绍。

用法

  • graphics.beginDraw()

参数

  • 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.beginDraw()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。