|
|
本帖最后由 qwe456 于 2026-2-20 15:38 编辑
global mom_operation_type
global mfg_mode
if{[info exists mom_operation_type]} {
if{([
string match "Variable-axis*" $mom_operation_type
]||
string match "Sequential Mill Main Operation" $mom_operation_type
]||
string match "Variable-axis Z-Level Milling" $mom_operation_type
]){
set mfg_mode "4_axis"
} else{
set mfg_mode "3+1_axis"
}
}
}
#MOM_output_literal " $mom_operation_type" |
|