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


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


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

用法

  • sh.getVertexCount()

参数

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

返回

  • int

说明

getVertexCount() 方法返回构成 PShape 的顶点数。在上面的示例中,值 4 由 getVertexCount() 方法返回,因为在 setup() 中定义了 4 个顶点。

例子

PShape s;

void setup() {
  size(100, 100);
  s = createShape();
  s.beginShape();
  s.vertex(0, 0);
  s.vertex(60, 0);
  s.vertex(60, 60);
  s.vertex(0, 60);
  s.endShape(CLOSE);
}

void draw() {
  translate(20, 20);
  for (int i = 0; i < s.getVertexCount(); i++) {
    PVector v = s.getVertex(i);
    v.x += random(-1, 1);
    v.y += random(-1, 1);
    s.setVertex(i, v);
  }
  shape(s);
}

相关用法


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