p5.js | función unhex()

La función unhex() en p5.js se usa para convertir una representación de string de cualquier número hexadecimal de entrada en su valor entero equivalente.

Sintaxis:

unhex(String)

Parámetros: esta función acepta una string de parámetros que es un número hexadecimal y debe convertirse en su valor equivalente entero. Este parámetro también puede ser una array de strings de números hexadecimales.

Valor devuelto: Devuelve la representación entera convertida .

El siguiente programa ilustra la función unhex() en p5.js.
Ejemplo 1:

function setup() {
  
    // Creating Canvas size
    createCanvas(500, 100);
}
  
function draw() {
  
    // Set the background color 
    background(220);
  
    // Initializing some strings
    let String1 = "F";
    let String2 = "FF";
  
    // Calling to unhex() function.
    let A = unhex(String1);
    let B = unhex(String2);
  
    // Set the size of text 
    textSize(16);
  
    // Set the text color 
    fill(color('red'));
  
    // Getting integer equivalent
    text("Integer equivalent of hexadecimal string 'F' is: "
         + A, 50, 30);
    text("Integer equivalent of hexadecimal string 'FF' is: "
         + B, 50, 60);
  
}

Producción:

Ejemplo-2:

function setup() {
  
    // Creating Canvas size
    createCanvas(650, 100);
}
  
function draw() {
  
    // Set the background color 
    background(220);
  
    // Initializing some strings
    let String1 = ["F", "A", "C"];
    let String2 = ["FF", "AC", "DE"];
  
    // Calling to unhex() function.
    let A = unhex(String1);
    let B = unhex(String2);
  
    // Set the size of text 
    textSize(16);
  
    // Set the text color 
    fill(color('red'));
  
    // Getting integer equivalent
    text("Integer equivalent of array of hexadecimal strings"+
         " ['F', 'A', 'C'] is: " 
         + A, 50, 30);
    text("Integer equivalent of array of hexadecimal strings"+
         " ['FF', 'AC', 'DE'] is: "
         + B, 50, 60);
  
}

Producción:

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

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 *