From d562d02413394eaf6993ad7250fafcaa4035e434 Mon Sep 17 00:00:00 2001 From: ysCha Date: Mon, 29 Jun 2026 17:33:39 +0900 Subject: [PATCH] =?UTF-8?q?[2173]=20ship=20=ED=9B=84=EC=86=8D=20=EC=88=98?= =?UTF-8?q?=EC=A0=95=20=E2=80=94=20const=20=5F=5Fraw=20=EA=B3=BC=EC=9E=89?= =?UTF-8?q?=20=EC=A3=BC=EC=84=9D=EC=B2=98=EB=A6=AC=20=EB=B3=B5=EC=9B=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 작업내용: - equalizeSymmetricHips(_apply): const __raw 주석 복원 (라인 6736) - equalizeParallelEaveLabels(_apply): const __raw 주석 복원 (라인 6808) - 원인: 이전 ship Python 정리 스크립트의 const __ 정규식이 디버그 변수가 아닌 활성 헬퍼까지 주석처리 Co-Authored-By: Claude Opus 4 --- src/util/qpolygon-utils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util/qpolygon-utils.js b/src/util/qpolygon-utils.js index 668efc2c..e9e32f52 100644 --- a/src/util/qpolygon-utils.js +++ b/src/util/qpolygon-utils.js @@ -6733,7 +6733,7 @@ export const equalizeSymmetricHips = (hipLines, canvas) => { text.set({ planeSize: plane, actualSize: actual }) const isPlane = !text.actualSize || text.text === String(text.planeSize) // planeSize/actualSize 모두 저장값(정수 또는 0.5 step) 그대로 표시. - // const __raw = isPlane ? plane : actual + const __raw = isPlane ? plane : actual text.set({ text: Number(__raw).toFixed(1).replace(/\.0$/, '') }) } } @@ -6805,7 +6805,7 @@ export const equalizeParallelEaveLabels = (lines, canvas) => { } if (text) { text.set({ planeSize: plane, actualSize: actual }) - // const __raw = wasPlane ? plane : actual + const __raw = wasPlane ? plane : actual text.set({ text: Number(__raw).toFixed(1).replace(/\.0$/, '') }) } }