📜  p5.js |常数 |两个_PI

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

p5.js |常数 |两个_PI

TWO_PI是一个数学常数,值为 6.28318530717958647693。它是圆的周长与其直径之比的两倍。

句法:

TWO_PI

下面的程序说明了 TWO_PI 在 p5.js 中的用法:

例子:

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);
   
    // Draw Arc
    // Use of constant TWO_PI
    arc(180, 50, 280, 280, 0, TWO_PI/2);
   
    // Unset the stroke
    noStroke();
   
    // Set the text size
    textSize(20);
      
    // Display output
    text("Value of TWO_PI is "+ TWO_PI, 30, 230);
}

输出:

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