p5.js | round()函数
p5.js 中的round()函数用于计算数字的舍入值。它计算最接近数字的整数。
句法
round(number)
参数:该函数只接受一个参数,如上所述,如下所述:
下面的程序说明了 p5.js 中的round()函数:
例子:
function setup() {
//create Canvas of size 270*80
createCanvas(270, 80);
}
function draw() {
background(220);
//initialize the parameter
let x = 67.54;
//call to round() function
let y = round(x);
textSize(16);
fill(color('red'));
text("Given Number is : " + x, 50, 30);
text("Computed Number is : " + y, 50, 50);
}
输出:
参考: https://p5js.org/reference/#/p5/round