dev #364

Merged
ysCha merged 18 commits from dev into dev-deploy 2025-09-29 11:40:03 +09:00
Showing only changes of commit 760becfb0d - Show all commits

View File

@ -1372,16 +1372,16 @@ export const drawGableRoof = (roofId, canvas, textMode) => {
innerLines.push(drawRoofLine(points, canvas, roof, textMode)) innerLines.push(drawRoofLine(points, canvas, roof, textMode))
} else { } else {
//다른방향 처리 //다른방향 처리
drawHipLine(points, canvas, roof, textMode, null, currentDegree, currentDegree) innerLines.push(drawHipLine(points, canvas, roof, textMode, null, currentDegree, currentDegree))
} }
} else if (analyze.isVertical) { } else if (analyze.isVertical) {
//현재라인이 수직선일때 //현재라인이 수직선일때
if (isVertical) { if (isVertical) {
//같은방향 처리 //같은방향 처리
drawRoofLine(points, canvas, roof, textMode) innerLines.push(drawRoofLine(points, canvas, roof, textMode))
} else { } else {
//다른방향 처리 //다른방향 처리
drawHipLine(points, canvas, roof, textMode, null, currentDegree, currentDegree) innerLines.push(drawHipLine(points, canvas, roof, textMode, null, currentDegree, currentDegree))
} }
} }
}) })