p5.js | función aleatoria() – Part 1

La función shuffle() en p5.js se usa para mezclar el orden de los elementos de array dados .

Sintaxis:

shuffle(Array)

Parámetros: Esta función acepta un Array de parámetros cuyos elementos se van a barajar.

Valor devuelto: Devuelve la array barajada.

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

function setup() { 
  
    // Creating Canvas size
    createCanvas(500, 90); 
      
    // Set the background color 
    background(220); 
      
    // Initializing the arrays
    let Array1 = ['IT', 'CSE', 'ECE'];
    
    // Calling to shuffle() function.
    let Array2 = shuffle(Array1);
      
    // Set the size of text 
    textSize(16); 
      
    // Set the text color 
    fill(color('red')); 
    
    // Getting new shuffled array
    text("Shuffled array is : " + Array2, 50, 30);
               
} 

Producción:

Ejemplo-2:

function setup() { 
  
    // Creating Canvas size
    createCanvas(500, 90); 
      
    // Set the background color 
    background(220); 
    
        // Calling to shuffle() function on an array
        // Taken as the parameter
        let Array = shuffle(['Ram', 'Shayam', 'Geeta', 'Anita']);
      
    // Set the size of text 
    textSize(16); 
      
        // Set the text color 
    fill(color('red')); 
    
    // Getting new shuffled array
    text("Shuffled array is : " + Array, 50, 30);
               
} 

Producción:

NOTA: En los códigos anteriores, la función dibujar() no se ha utilizado porque si usamos la función dibujar, no da un resultado claro, es decir, sigue cambiando el orden de la string de array continuamente y no da ningún resultado estancado.

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

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 *