当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


p5.js atan()用法及代码示例


p5.j​​s中的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



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 p5.js | atan() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。