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


Processing curveVertex()用法及代碼示例


Processing, curveVertex()用法介紹。

用法

  • curveVertex(x, y)
  • curveVertex(x, y, z)

參數

  • x (float) 頂點的 x 坐標
  • y (float) 頂點的 y 坐標
  • z (float) 頂點的 z 坐標

返回

  • void

說明

指定曲線的頂點坐標。此函數隻能在 beginShape()endShape() 之間使用,並且僅在沒有為 beginShape() 指定 MODE 參數時使用。一係列curveVertex() 線中的第一個和最後一個點將用於引導曲線的起點和終點。在第二點和第三點之間繪製一條微小的曲線至少需要四個點。使用curveVertex() 添加第五個點將在第二個、第三個和第四個點之間繪製曲線。 curveVertex() 函數是Catmull-Rom 樣條的實現。使用 3D 版本需要使用 P3D 進行渲染(有關更多信息,請參閱環境參考)。

例子

size(400, 400);
noFill();
beginShape();
curveVertex(336,  364);
curveVertex(336,  364);
curveVertex(272,  76);
curveVertex(84,  68);
curveVertex(128, 400);
curveVertex(128, 400);
endShape();
Image output for example 1

相關用法


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