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


Processing endShape()用法及代碼示例


Processing, endShape()用法介紹。

用法

  • endShape()
  • endShape(mode)

參數

  • mode (int) 使用 CLOSE 關閉形狀

返回

  • void

說明

endShape() 函數是 beginShape() 的伴侶,隻能在 beginShape() 之後調用。調用endshape() 時,自上次調用beginShape() 以來定義的所有圖像數據都將寫入圖像緩衝區。常量 CLOSE 作為 MODE 參數的值以關閉形狀(連接開始和結束)。

例子

size(400, 400);
noFill();

beginShape();
vertex(80, 80);
vertex(180, 80);
vertex(180, 320);
endShape(CLOSE);

beginShape();
vertex(200, 80);
vertex(300, 80);
vertex(300, 320);
endShape();
Image output for example 1

有關的

相關用法


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