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


Processing PShape.setVisible()用法及代碼示例


Processing, 類PShape中的setVisible()用法介紹。

用法

  • sh.setVisible(visible)

參數

  • sh (PShape) 任何 PShape 類型的變量
  • visible (boolean) "false" 使形狀不可見,"true" 使其可見

返回

  • void

說明

將形狀設置為可見或不可見。這由visible 參數的值決定。



形狀的默認可見性通常由創建 SVG 文件的任何程序控製。例如,此參數通過在 Adobe Illustrator 的圖層調色板中顯示或隱藏形狀來控製。

例子

PShape s;

void setup() {
  size(400, 400);
  // The file "bot.svg" must be in the data folder
  // of the current sketch to load successfully 
  s = loadShape("bot.svg");
}
void draw() {
  background(204);
  shape(s, 40, 40, 320, 320);  // Draw shape
 

s.setVisible(mousePressed);
 if (s.isVisible() == false) {  // Or use: "if (!s.isVisible)"
    noFill();
    rect(40, 40, 320, 320); 
 } 
}
Image output for example 1

有關的

相關用法


注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 PShape.setVisible()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。