六级士官
UID2048186
U币21
G币1590
技术0
主题8
精华0
阅读权限70
注册时间2013-3-27
最后登录2021-10-21
在线时间41 小时
六级士官
|
群里有人问内外公差如何输出?今天有点兴志,分享一下给有需要的人, 将以下代码加入到MOM_initial_move下或MOM_start_of_path下即可global mom_inside_outside_tolerances if {[info exists mom_inside_outside_tolerances]} {
set intol [format "%.3f" $mom_inside_outside_tolerances(0)]
set outtol [format "%.3f" $mom_inside_outside_tolerances(1)]
set tol [format "%.3f" [expr $intol + $outtol]]
}
MOM_output_literal "(Tol: $tol)"
- global mom_inside_outside_tolerances if {[info exists mom_inside_outside_tolerances]} {
- set intol [format "%.3f" $mom_inside_outside_tolerances(0)]
- set outtol [format "%.3f" $mom_inside_outside_tolerances(1)]
- set tol [format "%.3f" [expr $intol + $outtol]]
- }
- MOM_output_literal "(Tol: $tol)"
复制代码
|
评分
-
查看全部评分
|