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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。