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