p5.js中的ceil()函数用于计算数字的ceil值。此函数映射到javascript的Math.ceil()。数字的绝对值始终为正。
用法
ceil(number)
参数:该函数仅接受如上所述和以下描述的一个参数:
- 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
相关用法
- PHP ceil( )用法及代码示例
- Javascript Math.ceil( )用法及代码示例
- Javascript Math.ceil( )用法及代码示例
- p5.js max()用法及代码示例
- p5.js day()用法及代码示例
- p5.js pow()用法及代码示例
- p5.js second()用法及代码示例
- PHP max( )用法及代码示例
- PHP min( )用法及代码示例
- p5.js int()用法及代码示例
- p5.js tan()用法及代码示例
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 p5.js | ceil() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。