1
0
mirror of git://f0xx.org/ac/ac-be-hub synced 2026-08-09 20:59:23 +03:00

fix(globe3d=11): apply lat factor 0.75 and bump logoBuild globe23

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Anton Afanasyeu
2026-08-05 19:24:12 +02:00
parent a661ff0185
commit ee76b60041
2 changed files with 2 additions and 2 deletions

View File

@@ -956,7 +956,7 @@ function sampleFlatPlateFromHub(mercFlat, hpX, hpY) {
function sampleMercFlatFromTex(mercFlat, tex) {
const ll = texLonLat(tex);
const lon = wrapLon(ll.lon + MERCATOR_LON_CENTER);
const lat = Math.max(-1.52, Math.min(1.52, ll.lat * (1 - CONTINENT_NS_SQUEEZE)));
const lat = Math.max(-1.52, Math.min(1.52, ll.lat * CONTINENT_LAT_FACTOR));
return sampleMercFlat(mercFlat, lon, lat);
}