p5.js中的bezierDetail()函數用於設置Beziers顯示的分辨率。為了使用它,我們必須使用WEBGL render參數。
用法:
bezierDetail( detail )
參數:該函數接受單個參數詳細信息,該詳細信息存儲曲線的分辨率。
以下程序說明了p5.js中的bezierDetail()函數:
示例1:本示例使用bezierDetail()函數設置Beziers顯示的分辨率。
function setup() {
// Create canvas size
createCanvas(450, 310, WEBGL);
// bezierDetail() function
bezierDetail(6);
}
function draw() {
// Set the background color
background(220);
noFill();
// Bezier function with 8 parameters
// except z-coordinate
bezier(85, 20, 10, 10, 160, 90, 50, 80);
}
輸出:
示例2:本示例使用bezierDetail()函數設置Beziers顯示的分辨率。
function setup() {
// Create canvas of given size
createCanvas(350, 350, WEBGL);
// Use bezierDetail function
bezierDetail(4);
}
function draw() {
// Set background color
background(0, 0, 0);
noFill();
// Set stroke color
stroke(255);
// Draw bezier curve
bezier(150, 50, 0, 100, 100, 0, 100, 0, 0, 0, 100, 0);
}
輸出:
參考: https://p5js.org/reference/#/p5/bezierDetail
相關用法
- PHP cos( )用法及代碼示例
- d3.js d3.hsl()用法及代碼示例
- p5.js sin()用法及代碼示例
- p5.js tan()用法及代碼示例
- p5.js log()用法及代碼示例
- PHP key()用法及代碼示例
- d3.js d3.min()用法及代碼示例
- p5.js cos()用法及代碼示例
- PHP pos()用法及代碼示例
- PHP each()用法及代碼示例
- PHP each()用法及代碼示例
- p5.js second()用法及代碼示例
注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 p5.js | bezierDetail() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。