From aef69faaca3401fa1224884e686bce36b0c88acb Mon Sep 17 00:00:00 2001 From: LYW <leeyeanwoo@diteam.co.kr> Date: 화, 26 10월 2021 16:57:35 +0900 Subject: [PATCH] Ongoing80 #3684 CF AOI Review 전설비 Review History Defect이미지 클릭시 Offset 자동 계산 기능 추가 --- Internal_Library/CHWsiControls/WsiControl_Dit.cpp | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/Internal_Library/CHWsiControls/WsiControl_Dit.cpp b/Internal_Library/CHWsiControls/WsiControl_Dit.cpp index 0fff162..0d17f11 100644 --- a/Internal_Library/CHWsiControls/WsiControl_Dit.cpp +++ b/Internal_Library/CHWsiControls/WsiControl_Dit.cpp @@ -455,6 +455,10 @@ measureResult.nWsiState = pPacket->GetInt(3); measureResult.dAccuracy = pPacket->GetDouble(0); measureResult.dRepeatability = pPacket->GetDouble(1); + for (int i = 0; i < 10; i++) + { + measureResult.dDiagnosisHeight[i] = pPacket->GetDouble(i + 2); + } m_pWC2P->IWC2P_DisplayMessage(m_nIndex,_T("VLSI state %d ACC %f RTB %f"),measureResult.nWsiState,measureResult.dAccuracy ,measureResult.dRepeatability); } break; -- Gitblit v1.9.3