EgtExchange 1.5d2 :

- aggiunto accorpamento vertici
- aggiunta importazione STL binari.
This commit is contained in:
Dario Sassi
2014-04-07 07:01:40 +00:00
parent 04690b690a
commit b28ee2f442
4 changed files with 210 additions and 12 deletions
+2 -3
View File
@@ -86,11 +86,10 @@ ExcExecutor::ExecuteImportStl( const string& sCmd2, const STRVECTOR& vsParams)
}
// eseguo l'importazione
if ( ! pImpStl->Import( vsParams[0], m_pGDB, nId))
return false ;
bool bOk = pImpStl->Import( vsParams[0], m_pGDB, nId) ;
// cancello l'importatore
delete pImpStl ;
return true ;
return bOk ;
}