EgtExecutor 2.3b4 :

- aggiunta funzione Exe e lua AutoNestSetStartCorner.
This commit is contained in:
Dario Sassi
2021-02-14 14:43:23 +00:00
parent 40f5140bf1
commit 6727ea07bf
3 changed files with 26 additions and 1 deletions
+10 -1
View File
@@ -54,7 +54,16 @@ ExeAutoNestSetGuillotineMode( void)
{
if ( IsNull( s_pAutoNester))
return false ;
return s_pAutoNester->SetGuillotineMode();
return s_pAutoNester->SetGuillotineMode() ;
}
//-----------------------------------------------------------------------------
bool
ExeAutoNestSetStartCorner( int nCorner)
{
if ( IsNull( s_pAutoNester))
return false ;
return s_pAutoNester->SetStartCorner( nCorner) ;
}
//-----------------------------------------------------------------------------