p5.js | función acortar()

La función shorten() en p5.js se usa para disminuir la cantidad de elementos de la array dada en uno .

Sintaxis:

shorten(Array)

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

Valor devuelto: Devuelve la array acortada.

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

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

Producción:

Ejemplo-2:

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

Producción:

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

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 *