La función subset() en p5.js se usa para obtener el subconjunto de los elementos de array dados. Esta función extrae los elementos de una array existente.
Sintaxis:
subset(Array, Start, Count)
Parámetros: esta función acepta tres parámetros, como se mencionó anteriormente y se describe a continuación:
- Array: este parámetro contiene los elementos de la array en los que se realizará la operación de subconjunto() para obtener su elemento de subconjunto.
- Inicio: Este es el número desde donde se realizará la extracción. Su valor comienza desde 0.
- Recuento: Este es el número de elementos que se van a extraer.
Valor devuelto: Devuelve los elementos extraídos.
Los siguientes programas ilustran la función subset() en p5.js:
Ejemplo 1: este ejemplo usa la función subset() para obtener el subconjunto de los elementos de array dados.
function setup() { // Creating Canvas size createCanvas(600, 90); } function draw() { // Set the background color background(220); // Initializing the array let Array = ['Ram', 'Geeta', 'Shita', 'Shyam']; // Initializing a start value form where // extraction is done // it starts form 0. let Start = 1; // Initializing the count which defines // the number of elements to be extracted let Count = 2; // Calling to subset() function. let A = subset(Array, Start, Count); // Set the size of text textSize(16); // Set the text color fill(color('red')); // Getting extracted elements text("Extracted elements are : " + A, 50, 30); }
Producción:
Ejemplo 2: este ejemplo usa la función subset() para obtener el subconjunto de los elementos de array dados.
function setup() { // Creating Canvas size createCanvas(600, 90); } function draw() { // Set the background color background(220); // Initializing the array let Array = ['Ram', 'Geeta', 'Shita', 'Shyam']; // Initializing a start value form where // extraction is done // it starts form 0. let Start = 0; // Initializing the count which defines // the number of elements to be extracted let Count = 3; // Calling to subset() function. let A = subset(Array, Start, Count); // Set the size of text textSize(16); // Set the text color fill(color('red')); // Getting extracted elements text("Extracted elements are : " + A, 50, 30); }
Producción:
Referencia: https://p5js.org/reference/#/p5/subset
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