p5.js | función flotante()

La función float() en p5.js se usa para obtener la representación de punto flotante de la string dada como parámetro.

Sintaxis:

float(String)

Parámetros: esta función acepta un solo parámetro String que se utiliza para convertirlo en su representación de coma flotante.

Valor devuelto: Devuelve la representación de coma flotante convertida.

Los siguientes programas ilustran la función float() en p5.js:

Ejemplo 1: este ejemplo usa la función float() para obtener la representación de punto flotante de la string dada como parámetro.

function setup() { 
   
    // Creating Canvas size
    createCanvas(600, 150); 
} 
   
function draw() { 
       
    // Set the background color 
    background(220); 
     
    // Initializing some strings
    let String1 = "12";
    let String2 = "12.5";
    let String3 = "0.9";
    let String4 = "0";
     
    // Calling to float() function.
    let A = float(String1);
    let B = float(String2);
    let C = float(String3);
    let D = float(String4);
       
    // Set the size of text 
    textSize(16); 
       
    // Set the text color 
    fill(color('red')); 
     
    // Getting floating point representation
    text("Floating point representation of string '12' is: " + A, 50, 30);
    text("Floating point representation of string '12.9' is: " + B, 50, 60);
    text("Floating point representation of string '0.9' is: " + C, 50, 90);
    text("Floating point representation of string '0' is: " + D, 50, 110);
}  

Producción:

Ejemplo 2: este ejemplo usa la función float() para obtener la representación de punto flotante de la string dada como parámetro.

function setup() { 
   
    // Creating Canvas size
    createCanvas(600, 90); 
} 
   
function draw() { 
       
    // Set the background color 
    background(220); 
     
    // Initializing some strings
    let String1 = "Geeks";
    let String2 = "gfg";
     
    // Calling to float() function.
    let A = float(String1);
    let B = float(String2);
       
    // Set the size of text 
    textSize(16); 
       
    // Set the text color 
    fill(color('red')); 
     
    // Getting floating point representation
    text("Floating point representation of string 'Geeks' is: "
            + A, 50, 30);
    text("Floating point representation of string 'gfg' is: " 
            + B, 50, 60);
} 

Producción:

Nota: Del ejemplo anterior, si el parámetro debe ser un número, devuelve la salida como una representación de punto flotante; de ​​lo contrario, devuelve NaN, es decir, no es un número.

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

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 *