지지금구 설치 시 간격 조정

This commit is contained in:
hyojun.choi 2025-03-07 11:05:29 +09:00
parent 9a47549716
commit 33d66cce8b

View File

@ -1665,13 +1665,13 @@ export const useTrestle = () => {
canvas.add(bracket) canvas.add(bracket)
canvas.renderAll() canvas.renderAll()
if (direction === 'south') { if (direction === 'south') {
startPointY -= height startPointY -= height - moduleIntvlVer / 10
} else if (direction === 'north') { } else if (direction === 'north') {
startPointY += height startPointY += height + moduleIntvlVer / 10
} else if (direction === 'east') { } else if (direction === 'east') {
startPointX -= width startPointX -= width - moduleIntvlHor / 10
} else if (direction === 'west') { } else if (direction === 'west') {
startPointX += width startPointX += width + moduleIntvlHor / 10
} }
} }
} }