Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 | 316x 316x 316x 316x 316x 316x |
// Start the application with timing markers
const t0 = performance.now();
console.log(`[startup] script execution start: ${t0.toFixed(0)}ms`);
window.explorer = new MandelbrotExplorer();
console.log(`[startup] MandelbrotExplorer constructed: ${(performance.now() - t0).toFixed(0)}ms`);
window.explorer.start();
console.log(`[startup] explorer.start() complete: ${(performance.now() - t0).toFixed(0)}ms`);
|