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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。