p5.js | ceil()函数
p5.js 中的ceil()函数用于计算数字的 ceil 值。此函数映射到 JavaScript 的Math.ceil() 。一个数字的绝对值总是正的。
句法
ceil(number)
参数:该函数只接受一个参数,如上所述,如下所述:
下面的程序说明了 p5.js 中的ceil()函数:
例子:
function setup() {
//create Canvas of size 270*80
createCanvas(270, 80);
}
function draw() {
background(220);
//initialize the parameter
let x = 65.67;
//call to ceil() function
let y = ceil(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/ceil