diff options
| author | MtBntChvn <[email protected]> | 2026-02-21 08:52:46 +0000 |
|---|---|---|
| committer | MtBntChvn <[email protected]> | 2026-02-21 08:52:46 +0000 |
| commit | 9d3dee78febbf8bdbb02ab2ef5b4396858025af6 (patch) | |
| tree | 26bf0b59f37618b5efaaef4e94811a587cb79be7 /src/zenserver/frontend/html/util | |
| parent | use elliptical rings for node expansion placement (diff) | |
| download | zen-feature/oplog-dependency-graph.tar.xz zen-feature/oplog-dependency-graph.zip | |
tighten elliptical ring radiifeature/oplog-dependency-graph
base_radius: 70 → 50, ring_gap: 40 → 32
Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
Diffstat (limited to 'src/zenserver/frontend/html/util')
| -rw-r--r-- | src/zenserver/frontend/html/util/graphengine.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zenserver/frontend/html/util/graphengine.js b/src/zenserver/frontend/html/util/graphengine.js index 95830be2a..d81997f07 100644 --- a/src/zenserver/frontend/html/util/graphengine.js +++ b/src/zenserver/frontend/html/util/graphengine.js @@ -569,8 +569,8 @@ export class GraphEngine // place children in concentric elliptical rings (ripples) // ellipse: wider horizontally to match rectangular node shape - const base_radius = 70; - const ring_gap = 40; + const base_radius = 50; + const ring_gap = 32; const min_node_gap = 45; const ellipse_ratio = 2.0; // horizontal / vertical var added = 0; |