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


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


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

用法

  • sh.disableStyle()

參數

  • sh (PShape) 任何 PShape 類型的變量

返回

  • void

說明

禁用形狀的樣式數據並使用處理的當前樣式。樣式包括顏色、筆畫粗細和筆畫關節等屬性。

例子


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() {
  s.disableStyle();
  shape(s, -120, 40, 320, 320);
  s.enableStyle();
  shape(s, 200, 40, 320, 320);
}
Image output for example 1

相關用法


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