El método getRowCount() de p5.Table en p5.js se usa para devolver el número total de filas en un objeto de tabla.
Sintaxis:
getRowCount()
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: Devuelve un valor entero que especifica el número de filas de la tabla.
El siguiente ejemplo ilustra el método getRowCount() en p5.js:
Ejemplo:
let rowCount = 1; function setup() { createCanvas(500, 400); textSize(16); addRowBtn = createButton("Add Row"); addRowBtn.position(30, 50); addRowBtn.mouseClicked(addOneRow); removeRowBtn = createButton("Clear Last Row"); removeRowBtn.position(160, 50); removeRowBtn.mouseClicked(clearLastRow); // Create the table table = new p5.Table(); // Add columns table.addColumn("book"); table.addColumn("price"); // Display the table showTable(); } function addOneRow() { let newRow = table.addRow(); newRow.set('book', "Book " + rowCount); newRow.set('price', "Price " + (rowCount * random(1, 10)).toFixed(1)); rowCount++; showTable(); } function clearLastRow() { let lastRow = table.getRowCount() - 1; if (lastRow >= 0) table.removeRow(lastRow); showTable(); } function showTable() { clear(); text("Click on the buttons to change" + " the number of rows in the table", 20, 20); // Get the number of rows in the table let rowCount = table.getRowCount(); // Display the total rows // present in the table text("There are " + rowCount + " rows in the table", 20, 100); // Show all the rows currently // present in the table for (let r = 0; r < rowCount; r++) { let currRow = table.rows[r].arr.toString(); currRow = currRow.split(", ").join(" "); text(currRow, 30, 140 + r * 20); } }
Producción:
Editor en línea: https://editor.p5js.org/
Configuración del entorno: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/
Referencia: https://p5js.org/reference/#/p5.Table/getRowCount
Publicación traducida automáticamente
Artículo escrito por sayantanm19 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA