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
相关用法
- PHP atan( )用法及代码示例
- Javascript Math.atan( )用法及代码示例
- PHP Ds\Set last()用法及代码示例
- PHP pos()用法及代码示例
- d3.js d3.lab()用法及代码示例
- p5.js hex()用法及代码示例
- d3.js d3.hcl()用法及代码示例
- PHP Ds\Set add()用法及代码示例
- p5.js pan()用法及代码示例
- PHP Ds\Set first()用法及代码示例
- PHP Ds\Set contains()用法及代码示例
- PHP cos( )用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 p5.js | atan() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。