后处理如何判断铣刀类型。感谢!
global mom_tool_typeglobal mom_operation_type
if { $mom_tool_type=="Milling Tool-T Cutter" } {#T型刀
} elseif { $mom_tool_type=="THREAD MILL" } { #螺纹刀
} else {
}
主要是想判断一下是否为螺纹铣刀。
MOM_abort "$mom_tool_type" 获得的是Thread Mill
但不会进入elseif分支中去。如何获得螺纹铣刀的类型呢。
global mom_tool_type
global mom_operation_type
if { $mom_tool_type == "Milling Tool-T Cutter" } {
MOM_output_literal "(这是T型刀)"
} elseif { $mom_tool_type == "Thread Mill" } {
MOM_output_literal "(这是螺纹刀)"
}
拿走不谢{:smile:} pujifeng* 发表于 2024-5-20 16:08
global mom_tool_type
global mom_operation_type
if { $mom_tool_type == "Milling Tool-T Cutter" } {
...
拿走了,感谢!!!我把大小写弄错了, 这些刀具名称在哪里可以查到
T型刀=Milling Tool-T Cutter
螺纹刀=THREAD MILL
端铣刀(不可转位)=
端铣刀(可转位)=
钻头=
球头刀=
页:
[1]