fix(bioyond/warehouses): 修正仓库尺寸和物品排列参数

调整仓库的x轴和z轴物品数量以及物品尺寸参数,使其符合4x1x4的规格要求
This commit is contained in:
ZiWei
2025-10-19 08:36:40 +08:00
parent 19dd80dcdb
commit 9f7c3f02f9

View File

@@ -5,15 +5,15 @@ def bioyond_warehouse_1x4x4(name: str) -> WareHouse:
"""创建BioYond 4x1x4仓库""" """创建BioYond 4x1x4仓库"""
return warehouse_factory( return warehouse_factory(
name=name, name=name,
num_items_x=1, num_items_x=4,
num_items_y=4, num_items_y=4,
num_items_z=4, num_items_z=1,
dx=10.0, dx=10.0,
dy=10.0, dy=10.0,
dz=10.0, dz=10.0,
item_dx=137.0, item_dx=147.0,
item_dy=96.0, item_dy=106.0,
item_dz=120.0, item_dz=130.0,
category="warehouse", category="warehouse",
) )