EgtExecutor 1.8c3 :

- aggiunte funzioni Exe e Lua GetFirstGhostPart e GetNextGhostPart.
This commit is contained in:
Dario Sassi
2017-03-06 18:55:40 +00:00
parent 358915d2e7
commit dfb706d40f
4 changed files with 96 additions and 0 deletions
+10
View File
@@ -383,6 +383,16 @@ ExeGetNextRawPart( int nRawId)
return pMachMgr->GetNextRawPart( nRawId) ;
}
//-----------------------------------------------------------------------------
bool
ExeIsRawPart( int nRawId)
{
IMachMgr* pMachMgr = GetCurrMachMgr() ;
VERIFY_MACHMGR( pMachMgr, GDB_ID_NULL)
// verifico se è un grezzo della macchinata corrente
return pMachMgr->IsRawPart( nRawId) ;
}
//-----------------------------------------------------------------------------
int
ExeAddRawPart( Point3d ptOrig, double dLength, double dWidth, double dHeight, Color cCol)