halcon控制显示精度(精确到小数点后6位,精度足够了)

实践应用

set_tposition (WindowHandle3,50, 50)
write_string (WindowHandle3, '半径 D1=' +Ra[i]$'#f')
set_tposition (WindowHandle3, 150, 50)
write_string (WindowHandle3, '半径 D2=' + Rb[i]$'#f')
set_tposition (WindowHandle3, 250, 50)
write_string (WindowHandle3, '圆心 Row='+Row$'#f' +' Col='+Column$'#f')
set_tposition (WindowHandle3, 350, 50)
write_string (WindowHandle3, '宽 Width='+Width$'#f' +' 高 Height='+Height$'#f'+' 面积 S='+(3.1415926*Ra[i]*Rb[i])$'#f')

原文地址:https://www.cnblogs.com/qqhfeng/p/8399093.html