ellipse()函數是p5.js中的一個內置函數,用於繪製橢圓。
用法:
ellipse(x, y, w, h) ellipse(x, y, w, h, detail)
參數:該函數接受上述和以下所述的五個參數:
- x: 此參數采用橢圓的x坐標。
- y: 此參數采用橢圓的y坐標。
- w: 此參數采用橢圓的寬度。
- h: 此參數取橢圓的高度。
- detail: 這是可選參數,它以繪製的徑向扇區數為整數。
以下示例程序旨在說明P5.js中的ellipse()函數:
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
fill('yellow');
// An ellipse at 150, 150 with radius 280
ellipse(150, 150, 280, 180)
}
輸出:
參考: https://p5js.org/reference/#/p5/ellipse
相關用法
- CSS ellipse()用法及代碼示例
- PHP ImagickDraw ellipse()用法及代碼示例
- PHP GmagickDraw ellipse()用法及代碼示例
- PHP pi( )用法及代碼示例
- PHP Ds\Set contains()用法及代碼示例
- p5.js hex()用法及代碼示例
- p5.js str()用法及代碼示例
- PHP ord()用法及代碼示例
注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 p5.js | ellipse() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。