p5.js | función int()

La función int() en p5.js se usa para convertir el valor booleano, entero y flotante dado en su representación entera.

Sintaxis: 

int(ns)

int(n, radix)

Parámetros: esta función acepta tres tipos de parámetros que se enumeran a continuación: 

  • n: Almacena el valor que necesita convertir en entero. El posible valor de n es una string, un valor booleano o un número.
  • radix: Almacena la parte radix a la que se convierte el número.
  • ns: almacena diferentes tipos de elementos en la array.

Valor devuelto: Devuelve la representación entera convertida.
Los siguientes programas ilustran la función int() en p5.js:
Ejemplo 1: Este ejemplo usa la función int() para convertir el valor de entrada en su valor entero. 
 

javascript

function setup() {
  
    // Creating Canvas size
    createCanvas(600, 160);
}
  
function draw() {
      
    // Set the background color
    background(220);
    
    // Initializing some strings
    let Value1 = 12;
    let Value2 = 12.5;
    let Value3 = -7.9;
    let Value4 = -6;
    let Value5 = "6";
    
    // Calling to int() function.
    let A = int(Value1);
    let B = int(Value2);
    let C = int(Value3);
    let D = int(Value4);
    let E = int(Value5);
      
    // Set the size of text
    textSize(16);
      
    // Set the text color
    fill(color('red'));
    
    // Getting integer representation
    text("Integer representation of value 12 is: " + A, 50, 30);
    text("Integer representation of value 12.5 is: " + B, 50, 60);
    text("Integer representation of value -7.9 is: " + C, 50, 90);
    text("Integer representation of value -6 is: " + D, 50, 110);
    text("Integer representation of string '6' is: " + E, 50, 140);
} 

Producción: 
 

Ejemplo 2: este ejemplo usa la función int() para convertir el valor de entrada en su valor entero. 
 

javascript

function setup() {
  
    // Creating Canvas size
    createCanvas(600, 140);
}
  
function draw() {
      
    // Set the background color
    background(220);
    
    // Initializing some values
    let Value1 = true;
    let Value2 = false;
    let Value3 = "Geeks";
    let Value4 = [12, 3.6, -9.8, true, false, "Geeks"];
    
    // Calling to int() function.
    let A = int(Value1);
    let B = int(Value2);
    let C = int(Value3);
    let D = int(Value4);
      
    // Set the size of text
    textSize(16);
      
    // Set the text color
    fill(color('red'));
    
    // Getting integer representation
    text("Integer representation of value 'true' is: " + A, 50, 30);
    text("Integer representation of value 'false' is: " + B, 50, 60);
    text("Integer representation of value 'Geeks' is: " + C, 50, 90);
    text("Integer representation of array of values are: " + D, 50, 110);
} 

Producción: 
 

Nota: Del programa anterior, si el valor del parámetro es un número, devuelve la salida como una representación entera, para falso devuelve 0 y para verdadero devuelve 1 y para valores de string, devuelve NaN, es decir, no es un número.

Referencia: https://p5js.org/reference/#/p5/int
 

Publicación traducida automáticamente

Artículo escrito por Kanchan_Ray 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 *