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


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


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

用法

  • sh.beginShape()
  • sh.beginShape(kind)

參數

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

返回

  • void

說明

此方法用於啟動使用createShape() 函數創建的自定義形狀。它始終且僅與 createShape() 一起使用。

例子

PShape s;  // The PShape object

void setup() {  
  size(100, 100);
  s = createShape();
  s.beginShape();
  s.fill(0, 0, 255);
  s.noStroke();
  s.vertex(0, 0);
  s.vertex(0, 50);
  s.vertex(50, 0);
  s.endShape();
}

void draw() {
  shape(s, 25, 25);
}

有關的

相關用法


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