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


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


p5.j​​s中的acos()函数用于计算反余弦值。该函数的范围是-1至+1,范围是0至3.14。

用法:

acos(c)

参数:该函数接受单个参数c,该参数将值存储在-1至1之间。


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

示例1:本示例使用acos()函数计算反余弦值。

function setup() { 
  
    // Create Canvas of size 380*80 
    createCanvas(380, 80); 
} 
  
function draw() { 
      
    // Set the background color 
    background(220); 
      
    // Set the angle in radian 
    let angle = PI; 
      
    // Compute value of cos() 
    let c = cos(angle); 
  
    // Compute value of acos() 
    // It returns the value of PI 
    let ac = acos(c); 
      
    // Set the font size 
    textSize(16); 
      
    // Set the font color 
    fill(color('red')); 
      
    // Display result 
    text("Value of acos is : " + ac, 50, 30); 
}

输出:

示例2:本示例使用acos()函数计算反余弦值。

function setup() { 
  
    // Create Canvas of given size 
createCanvas(380, 80); 
} 
  
function draw() { 
      
    // Set the background color 
    background(220); 
      
    let c = 0.5; 
      
    // Use acos() function to calculate 
    // arc cosine value 
    let ac = acos(c); 
      
    // Set font size 
    textSize(16); 
      
    // Set font color 
    fill(color('red')); 
      
    // Display result 
    text("Value of acos is : " + ac, 50, 30); 
}

输出:

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



相关用法


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