p5.js |常数 | TAU
TAU 是一个数学常数,它是 TWO_PI 的别名。 TAU 的值为 6.28318530717958647693。它是圆的周长与其直径之比的两倍。
句法:
TAU
下面的程序说明了 TAU 在 p5.js 中的用法:
示例:此示例说明了 TAU 常数。
function setup() {
// Create Canvas of size 880*300
createCanvas(880, 300);
}
function draw() {
//Set the background Color
background(220);
//Set the stroke color
stroke(255, 204, 0);
//Set the stroke weight
strokeWeight(4);
// Use of constant TAU
arc(180, 50, 280, 280, 0, TAU/2);
noStroke();
// Set the font size
textSize(20);
// Display result
text("Value of TAU is "+ TAU, 30, 230);
}
输出:
参考: https://p5js.org/reference/#/p5/TAU