From a4f64cfca0662a165c5ba3db230df382ee61040c Mon Sep 17 00:00:00 2001 From: lh <2334563547@qq.com> Date: Tue, 15 Sep 2026 15:56:00 +0800 Subject: [PATCH] =?UTF-8?q?style(nmRender):=20=E6=94=B6=E7=B4=A7=E6=97=8B?= =?UTF-8?q?=E8=BD=AC=E4=B8=AD=E5=BF=83=E6=A0=87=E8=AE=B0=E5=B0=BA=E5=AF=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将十字标记总长度调整为约 36px - 将线宽调整为与网格边线一致的 1px - 保持三轴颜色、深度偏移和交互逻辑不变 - 同步更新后处理开发清单 --- Src/nmNum/nmRender/nmVTKRotationCenterMarkerLayer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Src/nmNum/nmRender/nmVTKRotationCenterMarkerLayer.cpp b/Src/nmNum/nmRender/nmVTKRotationCenterMarkerLayer.cpp index f9d612d..4d3d2db 100644 --- a/Src/nmNum/nmRender/nmVTKRotationCenterMarkerLayer.cpp +++ b/Src/nmNum/nmRender/nmVTKRotationCenterMarkerLayer.cpp @@ -23,7 +23,7 @@ namespace { -const double ROTATION_CENTER_HALF_LENGTH_PIXELS = 24.0; +const double ROTATION_CENTER_HALF_LENGTH_PIXELS = 18.0; const double ROTATION_CENTER_DEPTH_OFFSET_PIXELS = 1.5; const double ROTATION_CENTER_HOMOGENEOUS_EPSILON = std::numeric_limits::epsilon(); @@ -367,7 +367,7 @@ private: m_pMapper->SetColorModeToDirectScalars(); m_pActor->SetMapper(m_pMapper); - m_pActor->GetProperty()->SetLineWidth(3.0f); + m_pActor->GetProperty()->SetLineWidth(1.0f); m_pActor->GetProperty()->SetOpacity(1.0); m_pActor->GetProperty()->LightingOff(); m_pActor->PickableOff();