12345678910111213141516 |
- # 模块名称
- names=['md_py','md_xs','md_rc']
- # 房间下右上左墙的边长
- roomWallLengths = (2000,2200,3000,1200)
- roomUsedLengths = [1200,0,0,1000]
- roomLengths = (3000,2200)
- # 模块长度
- humenLenght = 650
- moduleLengths = (800,1000,900)
- moduleHeights = (1500,550,700)
- moduleUsePoint = [[1200,800],[550,500],[700,450]]
- moduleUseCenterPoint = [[1200,800+humenLenght/2],[550+humenLenght/2,500],[700+humenLenght/2,450]]
- moduleUseLength = (500,1000,900)
- doorLength=800
- # 门与左右上下的间距
- doorAlign=[100,200,200,0]
|