EgtMachKernel :

- aggiunta gestione fresatura a step.
This commit is contained in:
Dario Sassi
2016-07-18 08:07:26 +00:00
parent 29f950b27b
commit 828deddc66
6 changed files with 690 additions and 48 deletions
+4 -2
View File
@@ -480,7 +480,8 @@ bool
MillingData::VerifyLeadInType( int nVal) const
{
return ( nVal == MILL_LI_NONE || nVal == MILL_LI_LINEAR ||
nVal == MILL_LI_TANGENT || nVal == MILL_LI_GLIDE) ;
nVal == MILL_LI_TANGENT || nVal == MILL_LI_GLIDE ||
nVal == MILL_LI_ZIGZAG || nVal == MILL_LI_HELIX) ;
}
//----------------------------------------------------------------------------
@@ -488,7 +489,8 @@ bool
MillingData::VerifyLeadOutType( int nVal) const
{
return ( nVal == MILL_LO_NONE || nVal == MILL_LO_LINEAR ||
nVal == MILL_LO_TANGENT || nVal == MILL_LO_GLIDE || nVal == MILL_LO_AS_LI) ;
nVal == MILL_LO_TANGENT || nVal == MILL_LO_GLIDE ||
nVal == MILL_LO_AS_LI) ;
}
//----------------------------------------------------------------------------