Include :

- aggiunta costante TT_MILL_POLISHING per utensile mola di lucidatura.
This commit is contained in:
Dario Sassi
2020-02-21 11:05:29 +00:00
parent 6b81f6a293
commit bf2dcabc1d
+2 -1
View File
@@ -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 ||