EgtInterface 1.6h1 :

- aggiunta interfaccia per funzioni Nesting
- aggiunta interfaccia per iterazione all'indietro su pezzi e layer.
This commit is contained in:
Dario Sassi
2015-08-04 17:49:18 +00:00
parent a8c0bd30e8
commit a0f4898de2
6 changed files with 73 additions and 7 deletions
+28
View File
@@ -82,6 +82,20 @@ __stdcall EgtGetNextPart( int nId, BOOL bOnlyVisible)
return ExeGetNextPart( nId, ( bOnlyVisible != FALSE)) ;
}
//-------------------------------------------------------------------------------
int
__stdcall EgtGetLastPart( BOOL bOnlyVisible)
{
return ExeGetLastPart( ( bOnlyVisible != FALSE)) ;
}
//-------------------------------------------------------------------------------
int
__stdcall EgtGetPrevPart( int nId, BOOL bOnlyVisible)
{
return ExeGetPrevPart( nId, ( bOnlyVisible != FALSE)) ;
}
//-------------------------------------------------------------------------------
int
__stdcall EgtGetFirstLayer( int nPartId, BOOL bOnlyVisible)
@@ -96,6 +110,20 @@ __stdcall EgtGetNextLayer( int nId, BOOL bOnlyVisible)
return ExeGetNextLayer( nId, ( bOnlyVisible != FALSE)) ;
}
//-------------------------------------------------------------------------------
int
__stdcall EgtGetLastLayer( int nPartId, BOOL bOnlyVisible)
{
return ExeGetLastLayer( nPartId, ( bOnlyVisible != FALSE)) ;
}
//-------------------------------------------------------------------------------
int
__stdcall EgtGetPrevLayer( int nId, BOOL bOnlyVisible)
{
return ExeGetPrevLayer( nId, ( bOnlyVisible != FALSE)) ;
}
//-------------------------------------------------------------------------------
BOOL
__stdcall EgtEraseEmptyParts( void)