diff --git a/app.js b/app.js index 0e7cf6e..2954e55 100644 --- a/app.js +++ b/app.js @@ -196,18 +196,18 @@ document.addEventListener('DOMContentLoaded', async () => { // Nordex Geometries (Based on technical drawing: Tower is not centered in KSF width) // Foundation: R=5.5 // KSF: 59.65m (L) x 36.50m (B). - // Width Offset: Tower center is approx. 12.1m from one edge and 24.4m from the other (Total 36.5m) - ksfCoords = [[-12.1, -5.5], [24.4, -5.5], [24.4, -65.15], [-12.1, -65.15], [-12.1, -5.5]]; + // Width Offset: Narrow side (12.1m) is towards the road, wider side (24.4m) is away. + ksfCoords = [[-24.4, -5.5], [12.1, -5.5], [12.1, -65.15], [-24.4, -65.15], [-24.4, -5.5]]; // AMF: 180.00m (L) x 15.00m (B). Centered on tower axis. const amf = [[-7.5, -65.15], [7.5, -65.15], [7.5, -245.15], [-7.5, -245.15], [-7.5, -65.15]]; // NVM (Nabenvor-Montagefläche): 26,00m (L) x 10,50m (B). - // Positioned on the RIGHT side (the 24.4m side), starting at 18.25m from center. + // Positioned on the RIGHT side (the 12.1m road side), starting at 18.25m from center. const nvm = [[18.25, -5.5], [28.75, -5.5], [28.75, -31.5], [18.25, -31.5], [18.25, -5.5]]; // CRANE BOOM PAD (Triangular auxiliary area): 120.00m (L). - // Narrows from 18m to 7.5m width. + // Narrows from 18m to 7.5m width on the wider side (Left). const cbp = [[-18.0, -65.15], [-7.5, -65.15], [-7.5, -185.15], [-18.0, -65.15]]; mfParts = [amf, nvm, cbp];