* Stores a value in the Table's specified row and column. * The row is specified by its ID, while the column may be specified * by either its ID or title. * * @deprecated p5.Table will be removed in a future version of p5.js to make way for a new, friendlier version :) * @param {Integ
(row, column, value)
| 904 | * } |
| 905 | */ |
| 906 | set (row, column, value) { |
| 907 | this.rows[row].set(column, value); |
| 908 | } |
| 909 | |
| 910 | /** |
| 911 | * Stores a Float value in the Table's specified row and column. |
no outgoing calls
no test coverage detected