EgtExecutor 1.8j2 :

- aggiunta fiunzione Exe e Lua CreateSurfTmByVolZmap
- aggiunte funzioni Exe e Lua CopyVolZmapPart e RemoveVolZmapPart
- aggiunte funzioni Exe e Lua SurfArea, SurfVolume, VolZmapVolume e VolZmapPartVolume.
This commit is contained in:
Dario Sassi
2017-10-06 07:54:48 +00:00
parent 4821310eb7
commit ac5772a654
7 changed files with 324 additions and 0 deletions
+24
View File
@@ -580,6 +580,29 @@ LuaCreateSurfTmBySewing( lua_State* L)
return 1 ;
}
//-------------------------------------------------------------------------------
static int
LuaCreateSurfTmByVolZmap( lua_State* L)
{
// 2 o 3 parametri : ParentId, ZmapId [, nPart]
int nParentId ;
LuaCheckParam( L, 1, nParentId)
int nZmapId ;
LuaCheckParam( L, 2, nZmapId)
int nPart = -1 ;
if ( lua_gettop( L) >= 3)
LuaCheckParam( L, 3, nPart) ;
LuaClearStack( L) ;
// creo STM partendo da solido Zmap
int nId = ExeCreateSurfTmByVolZmap( nParentId, nZmapId, nPart) ;
// restituisco il risultato
if ( nId != GDB_ID_NULL)
LuaSetParam( L, nId) ;
else
LuaSetParam( L) ;
return 1 ;
}
//-------------------------------------------------------------------------------
bool
LuaInstallGdbCreateSurf( LuaMgr& luaMgr)
@@ -606,5 +629,6 @@ LuaInstallGdbCreateSurf( LuaMgr& luaMgr)
bOk = bOk && luaMgr.RegisterFunction( "EgtSurfTmRuled", LuaCreateSurfTmRuled) ;
bOk = bOk && luaMgr.RegisterFunction( "EgtSurfTmByTriangles", LuaCreateSurfTmByTriangles) ;
bOk = bOk && luaMgr.RegisterFunction( "EgtSurfTmBySewing", LuaCreateSurfTmBySewing) ;
bOk = bOk && luaMgr.RegisterFunction( "EgtSurfTmByVolZmap", LuaCreateSurfTmByVolZmap) ;
return bOk ;
}