Include :

- eliminato utensile di tipo additive (si continua ad usare una fresa cilindrica)
This commit is contained in:
Dario Sassi
2024-04-26 11:42:01 +02:00
parent 08e53e8872
commit 95d828ea9a
+1 -3
View File
@@ -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)