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


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


p5.j​​s中的asin()函數用於計算正弦的反函數(弧正弦)。如果輸入值範圍是-1至1,則它將返回-π/2至π/2之間的範圍。

用法:

asin(value)

參數:該函數接受單個參數值,該值存儲asin()函數的域。


返回值:它返回給定值的反正弦。

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

例:本示例使用asin()函數獲取值的反正弦值。

function setup() {  
   
    // Create Canvas of given size 
    createCanvas(550, 130);  
}  
   
function draw() {  
       
    // Set the background color  
    background(220);  
       
    // Initialize the parameter 
    // with some values 
    let a = 0;  
    let b = 1;  
    let c = -1; 
    let d = 0.5; 
    let e = 5; 
       
    // Call to asin() function  
    let v = asin(a); 
    let w = asin(b); 
    let x = asin(c); 
    let y = asin(d); 
    let z = asin(e); 
       
    // Set the size of text  
    textSize(16);  
       
    // Set the text color  
    fill(color('red'));  
     
    // Getting arc sine value  
    text("Arc sine value of 0 is : " + v, 50, 30); 
    text("Arc sine value of 1 is : " + w, 50, 50); 
    text("Arc sine value of -1 is : " + x, 50, 70); 
    text("Arc sine value of 0.5 is : " + y, 50, 90); 
    text("Arc sine value of 5 is : " + z, 50, 110);      
} 

輸出:

注意:如果該值大於1或小於-1,則返回NaN。

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



相關用法


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