* A full reset, which allocates a new underlying Float32Array at its initial * length
()
| 38 | * length |
| 39 | */ |
| 40 | reset() { |
| 41 | this.clear(); |
| 42 | this.data = new Float32Array(this.initialLength); |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * Adds values to the DataArray, expanding its internal storage to |