當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。