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


p5.js tan()用法及代碼示例


p5.j​​s中的tan()函數用於計算以弧度為單位的角度的切線值,作為該函數的輸入參數。

用法:

tan(angle)

參數:該函數接受單個參數角度,該角度是弧度中要計算其切線值的角度。


返回值:它返回以弧度為單位的角度的切線值作為輸入參數。

以下示例程序旨在說明p5.js中的tan()函數:

例:本示例使用tan()函數獲取弧度角的切線值。

function setup() {  
   
    // Create Canvas of given size  
    createCanvas(550, 130);  
}  
   
function draw() {  
       
    // Set the background color  
    background(220);  
       
    // Initialize the parameter with 
    // angles in radian only 
    let a = 0;  
    let b = 8.9;  
    let c = 47; 
    let d = 5; 
       
    // Call to tan() function  
    let v = tan(a); 
    let w = tan(b); 
    let x = tan(c); 
    let y = tan(d); 
       
    // Set the size of text  
    textSize(16);  
       
    // Set the text color  
    fill(color('red'));  
     
    // Getting tangent value  
    text("Tangent value of angle 0 (in radian) is : " + v, 50, 30); 
    text("Tangent value of angle 8.9 (in radian) is : " + w, 50, 50); 
    text("Tangent value of angle 47 (in radian) is : " + x, 50, 70); 
    text("Tangent value of angle 5 (in radian) is : " + y, 50, 90);      
} 

輸出:

注意:在上麵的代碼中,輸入角度應為弧度。要將度數轉換為弧度,請使用以下公式:

Angles_in_radian = (π/180)*angles_in_degree

參考: https://p5js.org/reference/#/p5/tan



相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 p5.js | tan() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。