From daf053dfd30a3c20524d92290be9d3dc2ac599ec Mon Sep 17 00:00:00 2001
From: LWQ <1806950222@qq.com>
Date: 星期三, 30 七月 2025 19:27:02 +0800
Subject: [PATCH] 1.修复:区分测量精度及研磨量距离单像素精度功能 2.修改:上传到CIM的数据
---
ENRIT/View/ViewInsInformation.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/ENRIT/View/ViewInsInformation.cpp b/ENRIT/View/ViewInsInformation.cpp
index f10495d..2fa6a74 100644
--- a/ENRIT/View/ViewInsInformation.cpp
+++ b/ENRIT/View/ViewInsInformation.cpp
@@ -203,7 +203,7 @@
pCell->SetTextClr(color);
pCell->SetFont(&lf);
}
- str.Format(_T("%.3f"),(double)m_HistoryData.nProfileDiff[nProfileIndex]/1000.);
+ str.Format(_T("%.3f"),(double)m_HistoryData.nProfileDiff[nProfileIndex] / 1000.);
m_GrdMeasureLine[i].SetItemText(nRowIdx,iCol,str);
nRowIdx = 2;
@@ -232,7 +232,7 @@
pCell->SetTextClr(color);
pCell->SetFont(&lf);
}
- str.Format(_T("%.3f"),(double)m_HistoryData.nChamferThickDn[nProfileIndex]/1000.);
+ str.Format(_T("%.3f"),(double)m_HistoryData.nChamferThickDn[nProfileIndex] / 1000.);
m_GrdMeasureLine[i].SetItemText(nRowIdx,iCol,str);
if (i > MAX_VIEWINFO_GRD_CNT - 3 && (68 == nProfileIndex || 78 == nProfileIndex))
--
Gitblit v1.9.3