From 95d828ea9ab54680fa16baa29522297f641c3096 Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Fri, 26 Apr 2024 11:42:01 +0200 Subject: [PATCH] Include : - eliminato utensile di tipo additive (si continua ad usare una fresa cilindrica) --- EMkToolConst.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/EMkToolConst.h b/EMkToolConst.h index c421f92..51e5103 100644 --- a/EMkToolConst.h +++ b/EMkToolConst.h @@ -27,7 +27,6 @@ const int TF_MORTISE = 0x0800 ; // 2048 const int TF_CHISEL = 0x1000 ; // 4096 const int TF_WATERJET = 0x2000 ; // 8192 const int TF_COMPO = 0x4000 ; // 16384 -const int TF_ADDITIVE = 0x8000 ; // 32768 // Costante per tutte le famiglie const int TF_ALL = 0xFF00 ; // Tipologie di utensili @@ -43,8 +42,7 @@ enum ToolType { TT_MORTISE_STD = TF_MORTISE + 0, // 2048 TT_CHISEL_STD = TF_CHISEL + 0, // 4096 TT_WATERJET = TF_WATERJET + 0, // 8192 - TT_COMPO = TF_COMPO + 0, // 16384 - TT_ADDITIVE = TF_ADDITIVE + 0 // 32768 + TT_COMPO = TF_COMPO + 0 // 16384 } ; // Controllo tipo valido bool inline IsValidToolType( int nType)