육지붕일 경우 값 고정

This commit is contained in:
hyojun.choi 2025-04-24 10:29:36 +09:00
parent 88e2c8ed05
commit b11424e70e

View File

@ -2251,7 +2251,15 @@ export const useTrestle = () => {
let halfMaxX
let halfMaxY
const { direction, trestleDetail } = surface
const { moduleIntvlHor, moduleIntvlVer } = trestleDetail
let moduleIntvlHor, moduleIntvlVer
if (+roofSizeSet === 3) {
//육지붕의 경우 값 고정
moduleIntvlHor = 300
moduleIntvlVer = 100
} else {
moduleIntvlHor = trestleDetail.moduleIntvlHor
moduleIntvlVer = trestleDetail.moduleIntvlVer
}
if (direction === 'south' || direction === 'north') {
maxX = width + moduleIntvlHor / 10