From bf2dcabc1dc90670e65a62dceebdee682e8c9c42 Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Fri, 21 Feb 2020 11:05:29 +0000 Subject: [PATCH] Include : - aggiunta costante TT_MILL_POLISHING per utensile mola di lucidatura. --- EMkToolConst.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/EMkToolConst.h b/EMkToolConst.h index b44f723..567d71b 100644 --- a/EMkToolConst.h +++ b/EMkToolConst.h @@ -36,6 +36,7 @@ enum ToolType { TT_SAW_FLAT = TF_SAWBLADE + 1, // 513 TT_MILL_STD = TF_MILL + 0, // 1024 TT_MILL_NOTIP = TF_MILL + 1, // 1025 + TT_MILL_POLISHING = TF_MILL + 2, // 1026 TT_MORTISE_STD = TF_MORTISE + 0, // 2048 TT_CHISEL_STD = TF_CHISEL + 0, // 4096 TT_WATERJET = TF_WATERJET + 0, // 8192 @@ -46,7 +47,7 @@ bool inline IsValidToolType( int nType) { return ( nType == TT_DRILL_STD || nType == TT_DRILL_LONG || nType == TT_SAW_STD || nType == TT_SAW_FLAT || - nType == TT_MILL_STD || nType == TT_MILL_NOTIP || + nType == TT_MILL_STD || nType == TT_MILL_NOTIP || nType == TT_MILL_POLISHING || nType == TT_MORTISE_STD || nType == TT_CHISEL_STD || nType == TT_WATERJET ||