EgtIntrerface :

- estese e aggiornate interfacce.
This commit is contained in:
Dario Sassi
2015-10-01 20:48:35 +00:00
parent 1429e40ff4
commit 3730add9d3
5 changed files with 108 additions and 4 deletions
+21
View File
@@ -160,6 +160,13 @@ __stdcall EgtMoveToCornerRawPart( int nRawId, const double ptCorner[3], int nFla
return ( ExeMoveToCornerRawPart( nRawId, ptCorner, nFlag) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtMoveRawPart( int nRawId, const double vtMove[3])
{
return ( ExeMoveRawPart( nRawId, vtMove) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtAddPartToRawPart( int nPartId, const double ptPos[3], int nRawId)
@@ -194,6 +201,20 @@ __stdcall EgtGetTableRef1( double ptPos[3])
return TRUE ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtGetTableArea1( int* pnAreaId)
{
// recupero l'identificativo
int nAreaId ;
if ( ! ExeGetTableArea1( nAreaId))
return FALSE ;
// ritorno il dato
if ( pnAreaId != nullptr)
*pnAreaId = nAreaId ;
return TRUE ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtShowOnlyTable( bool bVal)