diff --git a/src/render/interact/InteractionManager.cpp b/src/render/interact/InteractionManager.cpp index e05a4a4..e8a4b17 100644 --- a/src/render/interact/InteractionManager.cpp +++ b/src/render/interact/InteractionManager.cpp @@ -195,7 +195,6 @@ void InteractionManager::faceSlice(int idx) { safeRender(); } -void InteractionManager::faceSelected() { faceSlice(selected_); } bool InteractionManager::onWheel(int dir) { if (selected_ < 0 || selected_ >= static_cast(slices_.size())) return false; diff --git a/src/render/interact/InteractionManager.hpp b/src/render/interact/InteractionManager.hpp index 486eaa8..f2c42c0 100644 --- a/src/render/interact/InteractionManager.hpp +++ b/src/render/interact/InteractionManager.hpp @@ -55,10 +55,6 @@ public: // 视图翻转:水平旋转 180°(E55)。 void flipView(); - // 正视选中切片(E54/D40):相机转到正对选中切面法向。无选中则忽略。 - // (改用工具条按钮触发,因 widget 开启交互后会抢双击事件。) - void faceSelected(); - // 安装/卸载自定义交互样式(构造时安装;析构卸载恢复原样式)。 void installStyle(); void uninstallStyle();