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


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


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

用法

  • sh.getChild(index)
  • sh.getChild(target)

参数

  • sh (PShape) 任何 PShape 类型的变量
  • index (int) 要获取的形状的图层位置
  • target (String) 要获取的形状的名称

返回

  • PShape

说明

从父形状中提取子形状。使用 target 参数指定形状的名称。形状作为 PShape 对象返回,如果有错误,则返回 null

例子

PShape prefecture;
PShape aichi;

void setup() {
 size(400, 400);
 prefecture = loadShape("prefecture.svg");
 aichi = prefecture.getChild("AICHI"); // id="AICHI" on svg file

}

void draw() {
  aichi.disableStyle();
  background(255);
  fill(255);
  shape(prefecture, 0, 5);
  
  fill(94, 138, 248); // change the color 
  shape(aichi, -10, -10); // move the location a bit
}
Image output for example 1

有关的

相关用法


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