El PI es una constante matemática con el valor 3.14159265358979323846. Es la razón de la circunferencia de un círculo a su diámetro.
Sintaxis
PI
El siguiente programa ilustra el uso de PI en p5.js:
Ejemplo:
function setup() { //create Canvas of size 880*200 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 PI arc(50, 50, 280, 280, 0, PI / 2); noStroke(); textSize(20); text("Value of PI is " + PI, 30, 250); }
Producción:
Referencia: https://p5js.org/reference/#/p5/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