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