p5.js中的frameRate()函數用於指定每秒顯示的幀數。不帶任何參數調用frameRate()將返回當前幀速率。繪圖函數必須至少運行一次,然後才能返回值。該函數與getFrameRate()函數相同。
用法
frameRate( c )
參數:該函數接受單個參數c,該參數存儲幀速率變量的值。
以下示例程序旨在說明p5.js中的frameRate()函數:
例:
function setup() {
// Create canvas of given size
createCanvas(500, 200);
// Set the font size
textSize(20);
// Use frameRate() function
frameRate(3);
}
function draw() {
// Set the background color
background(0, 153, 0);
// Display the output
text("Frame Count with frameRate " +
int(getFrameRate()), 100, 100);
}
輸出:
參考: https://p5js.org/reference/#/p5/frameRate
相關用法
- p5.js log()用法及代碼示例
- d3.js d3.hsl()用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- p5.js cos()用法及代碼示例
- PHP key()用法及代碼示例
- p5.js sin()用法及代碼示例
- p5.js tan()用法及代碼示例
- PHP pos()用法及代碼示例
- PHP each()用法及代碼示例
- p5.js second()用法及代碼示例
- p5.js day()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 p5.js | frameRate() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。