La función round() en p5.js se usa para calcular el valor redondo de un número . Calcula el entero más cercano al número.
Sintaxis
round(number)
Parámetros: la función acepta solo un parámetro como se mencionó anteriormente y se describe a continuación:
El siguiente programa ilustra la función round() en p5.js:
Ejemplo:
function setup() { //create Canvas of size 270*80 createCanvas(270, 80); } function draw() { background(220); //initialize the parameter let x = 67.54; //call to round() function let y = round(x); textSize(16); fill(color('red')); text("Given Number is : " + x, 50, 30); text("Computed Number is : " + y, 50, 50); }
Producción:
Referencia: https://p5js.org/reference/#/p5/round
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