p5.js | Constantes | HALF_PI

El HALF_PI es una constante matemática y su valor es 1.57079632679489661923. El HALF_PI es la mitad de la relación entre la circunferencia de un círculo y su diámetro.

Sintaxis:

HALF_PI

El siguiente programa ilustra el uso de HALF_PI en p5.js:

Ejemplo:

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);
}

Producción:

Referencia: https://p5js.org/reference/#/p5/HALF_PI

Publicación traducida automáticamente

Artículo escrito por sarthak_ishu11 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *