From dbea1c53daf31dc2b7ff568c24063a362bd81995 Mon Sep 17 00:00:00 2001 From: Anton Afanasyeu Date: Wed, 5 Aug 2026 19:25:36 +0200 Subject: [PATCH] fix(globe3d=11): N-S latitude factor 0.66 Co-authored-by: Cursor --- assets/hub-globe.js | 2 +- index.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/hub-globe.js b/assets/hub-globe.js index e10fded..a018014 100644 --- a/assets/hub-globe.js +++ b/assets/hub-globe.js @@ -30,7 +30,7 @@ const CONTINENT_INNER_SY = 1.2408477842003853; /** Map plate center longitude (extract_red_polygons.py CENTER_LON). */ const MERCATOR_LON_CENTER = (12 * Math.PI) / 180; /** N–S latitude factor on mercator sample (0.75 = lat × 0.75). */ -const CONTINENT_LAT_FACTOR = 0.75; +const CONTINENT_LAT_FACTOR = 0.66; const RASTER_SCALE = 2; const AXIS_STEPS = 160; const SPHERE_AXIS_STEPS = 180; diff --git a/index.php b/index.php index bb80aa8..700481d 100644 --- a/index.php +++ b/index.php @@ -187,7 +187,7 @@ function hub_h(string $s): string { var supportsLayout = !!(window.CSS && CSS.supports && CSS.supports('object-fit', 'cover')); var logoEnabled = !!(stage && supportsSvg && supportsLayout); - var logoBuild = '20260704globe23'; + var logoBuild = '20260704globe24'; function hubAsset(rel) { var link = document.querySelector('link[href*="hub.css"]');