📜  p5.js |常数 | HALF_PI

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

p5.js |常数 | HALF_PI

HALF_PI是一个数学常数,其值为 1.57079632679489661923。 HALF_PI 是圆的周长与其直径的一半比率。

句法:

HALF_PI

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

例子:

function setup() {
  
    // Create Canvas of size 300*200
    createCanvas(300, 200);
}
  
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 HALF_PI
    arc(50, 50, 280, 280, 0, HALF_PI/2); 
      
    noStroke();
      
    // Set the font size
    textSize(20);
      
    // Display result
    text("Value of HALF_PI is "
            + HALF_PI, 30, 180);
}

输出:

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