このページでは[「P5.js 日本語リファレンス」] (https://qiita.com/bit0101/items/91818244dc26c767a0fe) の bezierDetail関数を説明します。
bezierDetail()
説明文
bezier曲線が表示される解像度を設定します。
デフォルト値は20です。
この関数はcreateCanvas()で WEBGL を指定した場合のみ有効です。
構文
bezierDetail(detail)
パラメタ
- detail
Number:曲線の解像度
例1
function setup(){
createCanvas(100, 100, WEBGL);
noFill();
bezierDetail (8); // 曲線の描画を少し粗くする
}
function draw(){
bezier(-40, -40, 0,
90, -40, 0,
-90, 40, 0,
40, 40, 0);
}
実行結果
著作権
p5.js was created by Lauren McCarthy and is developed by a community of collaborators, with support from the Processing Foundation and NYU ITP. Identity and graphic design by Jerel Johnson.
ライセンス
Creative Commons(CC BY-NC-SA 4.0) に従います。