innerLines 오류 수정
This commit is contained in:
parent
098fb8efc6
commit
760becfb0d
@ -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))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user