p5.js | atan()函数
p5.js 中的atan()函数用于计算tan()的倒数或介于-Infinity到Infinity (不包括)之间的值的反正切,并给出-π/2到π/2范围内的结果.
句法:
atan(P)
参数:此函数接受一个参数“P”,该参数的取值范围为 -1 到 1,计算其反正切值。
返回值:它返回一个值的反正切,其范围在 -π/2 到 π/2 之间。
下面的程序说明了 p5.js 中的 atan()函数:
示例:此示例使用 atan()函数来获取值的反正切。
function setup() {
// Create Canvas of size 270*80
createCanvas(550, 130);
}
function draw() {
// Set the background color
background(220);
// Initialize the parameter with some values
let a = 0;
let b = 88;
let c = -1;
let d = -0.5;
let e = 5;
// Call to atan() function
let v = atan(a);
let w = atan(b);
let x = atan(c);
let y = atan(d);
let z = atan(e);
// Set the size of text
textSize(16);
// Set the text color
fill(color('red'));
// Getting arc tangent value
text("Arc tangent value of 0 is : " + v, 50, 30);
text("Arc tangent value of 88 is : " + w, 50, 50);
text("Arc tangent value of -1 is : " + x, 50, 70);
text("Arc tangent value of -0.5 is : " + y, 50, 90);
text("Arc tangent value of 5 is : " + z, 50, 110);
}
输出:
参考: https://p5js.org/reference/#/p5/atan