p5.js | Constantes | DOS_PI

El TWO_PI es una constante matemática con el valor 6.28318530717958647693. Es el doble de la razón de la circunferencia de un círculo a su diámetro.

Sintaxis:

TWO_PI

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

Ejemplo:

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

Producción:

Referencia: https://p5js.org/reference/#/p5/TWO_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 *