From 8ecb17d9c174391d888920268b3e62a072199265 Mon Sep 17 00:00:00 2001 From: Benjamin Fan Date: Tue, 13 Feb 2024 14:54:36 -0800 Subject: [PATCH] fix(hugo): Add missing dimension id attributes --- designs/hugo/src/front.mjs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/designs/hugo/src/front.mjs b/designs/hugo/src/front.mjs index 19979961a6e..a1e66b8828b 100644 --- a/designs/hugo/src/front.mjs +++ b/designs/hugo/src/front.mjs @@ -152,46 +152,55 @@ function hugoFront({ // Paperless? if (paperless) { macro('vd', { + id: 'vFrontNeck', from: points.cfRibbing, to: points.cfNeck, x: points.cfNeck.x - 15, }) macro('vd', { + id: 'vFrontAll', from: points.cfRibbing, to: points.raglanTipFront, x: points.cfNeck.x - 30, }) macro('vd', { + id: 'vFrontSideSeam', from: points.ribbing, to: points.armhole, x: points.ribbing.x + 15 + sa, }) macro('hd', { + id: 'hFrontNeckhole', from: points.cfNeck, to: points.raglanTipFront, y: points.raglanTipFront.y - 15 - sa, }) macro('hd', { + id: 'hFrontArmhole', from: points.raglanTipFront, to: points.armhole, y: points.raglanTipFront.y - 15 - sa, }) macro('hd', { + id: 'hFrontPocketWidth', from: points.cfRibbing, to: points.pocketTop, y: points.cfRibbing.y + 15 + sa, }) macro('hd', { + id: 'hFrontPocketTip', from: points.cfRibbing, to: points.pocketTip, y: points.cfRibbing.y + 30 + sa, }) macro('hd', { + id: 'hFrontWidthFull', from: points.cfRibbing, to: points.ribbing, y: points.cfRibbing.y + 45 + sa, }) macro('vd', { + id: 'vFrontPocket', from: points.pocketHem, to: points.pocketTop, x: points.pocketTip.x + 15,