From 1dd4582c9d8b7611a7eb008c3a9ed3bc1d1f1ac5 Mon Sep 17 00:00:00 2001 From: mikael-lovqvists-claude-agent Date: Sun, 10 May 2026 16:28:32 +0000 Subject: [PATCH] Tune defaults: depth 5, 500 iters, start in draw mode MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Default subdivision depth 4 → 5 - Default relaxation iterations 32 → 500 - Paint mode enabled at startup (pen tool active) - Remove worst-shape distortion ratio from stats display Co-Authored-By: Claude Sonnet 4.6 --- standalone/goldberg-sphere/index.html | 6 +++--- standalone/goldberg-sphere/playground_main.mjs | 5 ++--- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/standalone/goldberg-sphere/index.html b/standalone/goldberg-sphere/index.html index 44ed0f2..61ddaf8 100644 --- a/standalone/goldberg-sphere/index.html +++ b/standalone/goldberg-sphere/index.html @@ -111,8 +111,8 @@

Mesh

- - 4 + + 5
@@ -120,7 +120,7 @@

Relaxation

- +
diff --git a/standalone/goldberg-sphere/playground_main.mjs b/standalone/goldberg-sphere/playground_main.mjs index 9a88ea7..d64d4c7 100644 --- a/standalone/goldberg-sphere/playground_main.mjs +++ b/standalone/goldberg-sphere/playground_main.mjs @@ -61,9 +61,6 @@ function set_stats(geo, stage_name, ms) { if (s.vertices !== undefined) { lines += ` Verts: ${s.vertices}`; } if (s.pentagons !== undefined) { lines += ` (${s.pentagons} pent)`; } lines += '\n'; - if (s.worst_shape !== null) { - lines += `Worst shape_r: ${s.worst_shape.toFixed(4)}\n`; - } lines += `Build: ${ms}ms`; stats_el.textContent = lines; } @@ -1179,5 +1176,7 @@ window.addEventListener('keydown', e => { // Boot // --------------------------------------------------------------------------- +paint.enabled = true; +update_paint_buttons(); resize(); build();