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


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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。