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