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


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


p5.j​​s中的sin()函数用于计算以弧度为单位的角度的正弦值(该函数的输入参数),结果在-1到1之间。

用法:

sin( angle )

参数:该函数接受单个参数角度,该角度是弧度中计算正弦值的角度。


返回值:它返回以弧度为单位的角度正弦值作为输入参数。

以下示例程序旨在说明p5.js中的sin()函数:

例:本示例使用sin()函数获取弧度角的正弦值。

function setup() {  
   
    // Create Canvas of size 270*80  
    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 sin() function  
    let v = sin(a); 
    let w = sin(b); 
    let x = sin(c); 
    let y = sin(d); 
       
    // Set the size of text  
    textSize(16);  
       
    // Set the text color  
    fill(color('red'));  
     
    // Getting sine value  
    text("Sine value of angle 0 (in radian) is : " + v, 50, 30); 
    text("Sine value of angle 8.9 (in radian) is : " + w, 50, 50); 
    text("Sine value of angle 47 (in radian) is : " + x, 50, 70); 
    text("Sine value of angle 5 (in radian) is : " + y, 50, 90);      
} 

输出:

注意:在上面的代码中,输入角度应为弧度。要将度数转换为弧度,请使用以下公式:

Angles_in_radian = (π/180)*angles_in_degree

参考: https://p5js.org/reference/#/p5/sin



相关用法


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