class ItemSubType(IntEnum):
{
None = 0,
# Production
MachineRobot,
RailGantry,
WorkpiecePositioner,
EndEffector,
# Peripheral
Tool,
Fixture,
Jig,
DressUp,
ToolMagazine,
# Human
Human1,
# Miscellaneous
Protection,
BuildingPart,
Furniture,
Chassis,
FloorPlan,
SweptVolume
};
|