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


Processing PShape.endShape()用法及代码示例


Processing, 类PShape中的endShape()用法介绍。

用法

  • sh.endShape()
  • sh.endShape(mode)

参数

  • sh (PShape) 任何 PShape 类型的变量

返回

  • void

说明

此方法用于完成使用createShape() 函数创建的自定义形状。它始终且仅与 createShape() 一起使用。

例子

PShape s;  // The PShape object

void setup() {  
  size(100, 100);
  s = createShape();
  s.beginShape();
  s.fill(0, 0, 255);
  s.noStroke();
  s.vertex(0, 0);
  s.vertex(0, 50);
  s.vertex(50, 0);
  s.endShape();
}

void draw() {
  shape(s, 25, 25);
}

相关用法


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