육지붕일 경우 값 고정
This commit is contained in:
parent
88e2c8ed05
commit
b11424e70e
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user