From 760becfb0d84d87a412afb5153a877c4dca06949 Mon Sep 17 00:00:00 2001 From: Jaeyoung Lee Date: Wed, 10 Sep 2025 13:45:01 +0900 Subject: [PATCH] =?UTF-8?q?innerLines=20=EC=98=A4=EB=A5=98=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/util/qpolygon-utils.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/util/qpolygon-utils.js b/src/util/qpolygon-utils.js index bad9bd69..b9e812f3 100644 --- a/src/util/qpolygon-utils.js +++ b/src/util/qpolygon-utils.js @@ -1372,16 +1372,16 @@ export const drawGableRoof = (roofId, canvas, textMode) => { innerLines.push(drawRoofLine(points, canvas, roof, textMode)) } else { //다른방향 처리 - drawHipLine(points, canvas, roof, textMode, null, currentDegree, currentDegree) + innerLines.push(drawHipLine(points, canvas, roof, textMode, null, currentDegree, currentDegree)) } } else if (analyze.isVertical) { //현재라인이 수직선일때 if (isVertical) { //같은방향 처리 - drawRoofLine(points, canvas, roof, textMode) + innerLines.push(drawRoofLine(points, canvas, roof, textMode)) } else { //다른방향 처리 - drawHipLine(points, canvas, roof, textMode, null, currentDegree, currentDegree) + innerLines.push(drawHipLine(points, canvas, roof, textMode, null, currentDegree, currentDegree)) } } })