📜  p5.js | cos()函数

📅  最后修改于: 2022-05-13 01:56:24.737000             🧑  作者: Mango

p5.js | cos()函数

p5.js 中的cos()函数用于计算一个角度的余弦值(以弧度为单位)作为函数的输入参数,并返回 -1 到 1 之间的结果。

句法:

cos(angle)

参数:此函数接受单个参数角度,该角度是要计算其余弦值的弧度角度。

返回值:返回作为输入参数的角度的余弦值,以弧度表示。

下面的程序说明了 p5.js 中的 cos()函数:

示例:此示例使用 cos()函数来获取以弧度为单位的角度的余弦值。

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

输出:

注意:在上面的代码中,输入的角度应该是弧度。为了将度角转换为弧度,我们可以使用以下公式:

Angles_in_radian = (π/180)*angles_in_degree

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