EgtMachKernel :
- corrette svuotature di cerchi su piani diversi da XY - aggiunti a svuotature attacchi a scivolo (GLIDE) - aggiunti suggerimenti - gestito in simulatore mask assi in movimenti in rapido - corretta in simulatore visualizzazione tipo movimento.
This commit is contained in:
+20
-1
@@ -608,7 +608,7 @@ Operation::GetClPathFinalAxesValues( int nClPathId, DBLVECTOR& vAxVal)
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
std::string
|
||||
string
|
||||
Operation::ExtractHint( const std::string& sNotes)
|
||||
{
|
||||
const string KEY_HINT = "Hint:" ;
|
||||
@@ -626,6 +626,25 @@ Operation::ExtractHint( const std::string& sNotes)
|
||||
return sHint ;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
string
|
||||
Operation::ExtractSurf( const std::string& sNotes)
|
||||
{
|
||||
const string KEY_SURF = "Surf:" ;
|
||||
string sHint ;
|
||||
STRVECTOR vsCmd ;
|
||||
Tokenize( sNotes, ";", vsCmd) ;
|
||||
for each (const auto& sCmd in vsCmd) {
|
||||
// se per assi rotanti
|
||||
if ( sCmd.find( KEY_SURF) != string::npos) {
|
||||
sHint = sCmd ;
|
||||
ReplaceString( sHint, KEY_SURF, "") ;
|
||||
break ;
|
||||
}
|
||||
}
|
||||
return sHint ;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
bool
|
||||
Operation::CalculateAxesValues( const string& sHint)
|
||||
|
||||
Reference in New Issue
Block a user