* @desc Run the kernel program, and send the output to renderOutput * This method calls a helper method *renderOutput* to return the result. * @returns {Float32Array|Float32Array[]|Float32Array[][]|void} Result The final output of the program, as float, and as Textures for reuse. *
()
| 283 | * @abstract |
| 284 | */ |
| 285 | run() { |
| 286 | throw new Error(`"run" not defined on ${ this.constructor.name }`) |
| 287 | } |
| 288 | |
| 289 | /** |
| 290 | * @abstract |
no outgoing calls
no test coverage detected