dazhi518 发表于 2024-5-20 15:34:18

后处理如何判断铣刀类型。感谢!

global mom_tool_type
global 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分支中去。如何获得螺纹铣刀的类型呢。

pujifeng* 发表于 2024-5-20 16:08:48

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:}

dazhi518 发表于 2024-5-20 18:30:50

pujifeng* 发表于 2024-5-20 16:08
global mom_tool_type
global mom_operation_type
if { $mom_tool_type == "Milling Tool-T Cutter" } {
...

拿走了,感谢!!!我把大小写弄错了,

无/love情 发表于 2024-5-25 20:14:21

这些刀具名称在哪里可以查到
T型刀=Milling Tool-T Cutter

螺纹刀=THREAD MILL

端铣刀(不可转位)=

端铣刀(可转位)=

钻头=

球头刀=
页: [1]
查看完整版本: 后处理如何判断铣刀类型。感谢!