EgtInterface 1.6a4 :

- completamento modifiche per registrazione comandi in lua e per gestione RefType e RefId.
This commit is contained in:
Dario Sassi
2015-01-26 07:53:04 +00:00
parent 4e5a81c493
commit a45c3fca8a
25 changed files with 1574 additions and 1254 deletions
+6 -6
View File
@@ -97,7 +97,7 @@ __stdcall EgtSetGridFrame( const double ptOrig[3], const double vX[3], const dou
//-----------------------------------------------------------------------------
bool
__stdcall EgtSetGridFrame( const Frame3d& frFrame)
EgtSetGridFrame( const Frame3d& frFrame)
{
IGeomDB* pGeomDB = GetCurrGeomDB() ;
VERIFY_GEOMDB( pGeomDB, false)
@@ -135,7 +135,7 @@ __stdcall EgtGetGridFrame( double ptOrig[3], double vX[3], double vY[3], double
//-----------------------------------------------------------------------------
bool
__stdcall EgtGetGridFrame( int nRefId, Frame3d& frFrame)
EgtGetGridFrame( int nRefId, Frame3d& frFrame)
{
IGeomDB* pGeomDB = GetCurrGeomDB() ;
VERIFY_GEOMDB( pGeomDB, false)
@@ -155,7 +155,7 @@ __stdcall EgtGetGridFrame( int nRefId, Frame3d& frFrame)
//-----------------------------------------------------------------------------
bool
__stdcall EgtGetGridVersZ( int nRefId, Vector3d& vtVersZ)
EgtGetGridVersZ( int nRefId, Vector3d& vtVersZ)
{
IGeomDB* pGeomDB = GetCurrGeomDB() ;
VERIFY_GEOMDB( pGeomDB, false)
@@ -194,7 +194,7 @@ __stdcall EgtOpenFile( const wchar_t* wsFilePath)
//-----------------------------------------------------------------------------
bool
__stdcall EgtOpenFile( const string& sFilePath)
EgtOpenFile( const string& sFilePath)
{
// reinizializzazione (con pulizia) del DB geometrico
if ( ! EgtNewFile())
@@ -212,7 +212,7 @@ __stdcall EgtImportFile( const wchar_t* wsFilePath)
//-----------------------------------------------------------------------------
bool
__stdcall EgtImportFile( const string& sFilePath)
EgtImportFile( const string& sFilePath)
{
// carico il file
return GetCurrGeomDB()->Load( sFilePath) ;
@@ -227,7 +227,7 @@ __stdcall EgtSaveFile( const wchar_t* wsFilePath, int nFlag)
//-----------------------------------------------------------------------------
bool
__stdcall EgtSaveFile( const string& sFilePath, int nFlag)
EgtSaveFile( const string& sFilePath, int nFlag)
{
IGeomDB* pGeomDB = GetCurrGeomDB() ;
VERIFY_GEOMDB( pGeomDB, false)