feature/ysCha #23

Closed
ysCha wants to merge 259 commits from feature/ysCha into main
Showing only changes of commit bdcacd5542 - Show all commits

View File

@ -231,6 +231,21 @@ export function useRoofShapeSetting(id) {
pitch: pitchRef.current, pitch: pitchRef.current,
onlyOffset: true, onlyOffset: true,
} }
switch (line.direction) {
case 'bottom':
direction = 'west'
break
case 'top':
direction = 'east'
break
case 'left':
direction = 'north'
break
case 'right':
direction = 'south'
break
}
} }
}) })
} }