EgtInterface 2.1d2 :

- aggiunte interfacce per EgtCreateAdjustFlatParts, EgtAdjustFlatParts e EgtAdjustFlatPart.
This commit is contained in:
Dario Sassi
2019-04-10 09:25:24 +00:00
parent f14087b477
commit f28818dd86
2 changed files with 21 additions and 0 deletions
+21
View File
@@ -19,6 +19,13 @@
using namespace std ;
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtCreateAdjustFlatParts( int nType, double dToler)
{
return ( ExeCreateAdjustFlatParts( nType, dToler) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtCreateFlatParts( int nType, double dToler)
@@ -26,6 +33,20 @@ __stdcall EgtCreateFlatParts( int nType, double dToler)
return ( ExeCreateFlatParts( nType, dToler) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtAdjustFlatParts( void)
{
return ( ExeAdjustFlatParts() ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtAdjustFlatPart( int nPartId)
{
return ( ExeAdjustFlatPart( nPartId) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtAdjustFlatPartLayer( int nLayerId)