EgtExecutor :

- piccoli ritocchi stilistici.
This commit is contained in:
Dario Sassi
2016-02-16 17:20:01 +00:00
parent af4f4633e0
commit 81a2e0bf75
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -129,7 +129,7 @@ ExeVerifyMachining( int nMchId, int& nResult)
nResult |= FMI_RM ;
}
}
// confronto la regione di uscitao della lavorazione con le regioni degli altri pezzi
// confronto la regione di uscita della lavorazione con le regioni degli altri pezzi
for ( int nMchRegId : vMchLoReg) {
for ( int nOthRegId : vOthReg) {
if ( ExeSurfFrChunkSimpleClassify( nMchRegId, 0, nOthRegId, 0) != REGC_OUT)
+2 -2
View File
@@ -262,9 +262,9 @@ LuaGetCurrPhase( lua_State* L)
// nessun parametro
LuaClearStack( L) ;
// recupero la fase di lavorazione corrente nella macchinata corrente
int nCount = ExeGetCurrPhase() ;
int nPhase = ExeGetCurrPhase() ;
// restituisco il risultato
LuaSetParam( L, nCount) ;
LuaSetParam( L, nPhase) ;
return 1 ;
}