El QUARTER_PI es una constante matemática con el valor 0.7853982. Es un cuarto de la razón de la circunferencia de un círculo a su diámetro.
Sintaxis:
QUARTER_PI
El siguiente programa ilustra la constante QUARTER_PI en p5.js:
Ejemplo: Este ejemplo describe la constante QUARTER_PI.
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 QUARTER_PI arc(50, 50, 280, 280, 0, QUARTER_PI/2); noStroke(); // Set font size textSize(20); // Display result text("Value of QUARTER_PI is " + QUARTER_PI, 30, 150); }
Producción:
Referencia: https://p5js.org/reference/#/p5/QUARTER_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