p5.js中的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
相关用法
- PHP acos( )用法及代码示例
- Javascript Math.acos( )用法及代码示例
- p5.js nfp()用法及代码示例
- PHP pow( )用法及代码示例
- p5.js nfc()用法及代码示例
- CSS var()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP each()用法及代码示例
- p5.js box()用法及代码示例
- p5.js nfs()用法及代码示例
- d3.js d3.map.get()用法及代码示例
- p5.js nf()用法及代码示例
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 p5.js | acos() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。