From 422d30e44d07e5e59519cd5d1b73ec49921b2e31 Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Fri, 25 Oct 2024 17:18:02 +0200 Subject: [PATCH] EgtMachKernel : - consentito utilizzo lame in lavorazioni 5assi (per la pietra). --- FiveAxisMillingData.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FiveAxisMillingData.cpp b/FiveAxisMillingData.cpp index 822f837..9409a4a 100644 --- a/FiveAxisMillingData.cpp +++ b/FiveAxisMillingData.cpp @@ -324,7 +324,7 @@ FiveAxisMillingData::VerifyTool( const ToolsMgr* pToolsMgr, const string& sVal, pTdata = pToolsMgr->GetTool( sVal) ; if ( pTdata == nullptr) return false ; - if ( ( pTdata->m_nType & TF_MILL) == 0) + if ( ( pTdata->m_nType & TF_MILL) == 0 && ( pTdata->m_nType & TF_SAWBLADE) == 0) return false ; return true ; }