45087f4e28
- aggiunto nuovo tipo di file BTLx (FT_BTLX = 19) - aggiunta funzione Exe e Lua ImportBtlx - aggiunte funzioni Exe e Lua per BeamMgr creazione e modifica travi e pareti e aggiunta features.
129 lines
5.1 KiB
C
129 lines
5.1 KiB
C
//----------------------------------------------------------------------------
|
|
// EgalTech 2014-2015
|
|
//----------------------------------------------------------------------------
|
|
// File : LUA.h Data : 16.01.15 Versione : 1.6a3
|
|
// Contenuto : Dichiarazioni locali per moduli LUA.
|
|
//
|
|
//
|
|
//
|
|
// Modifiche : 27.09.14 DS Creazione modulo.
|
|
//
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include "/EgtDev/Include/EGnLuaMgr.h"
|
|
|
|
//-------------------------- General -----------------------------------------
|
|
bool LuaInstallGeneral( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- UiUnits -----------------------------------------
|
|
bool LuaInstallUiUnits( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GeoBase -----------------------------------------
|
|
bool LuaInstallGeoBase( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GeomDB ------------------------------------------
|
|
bool LuaInstallGeomDB( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GdbCreate ---------------------------------------
|
|
bool LuaInstallGdbCreate( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GdbCreateCurve ----------------------------------
|
|
bool LuaInstallGdbCreateCurve( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GdbCreateSurf -----------------------------------
|
|
bool LuaInstallGdbCreateSurf( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GdbCreateVol ------------------------------------
|
|
bool LuaInstallGdbCreateVol( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GdbModify ---------------------------------------
|
|
bool LuaInstallGdbModify( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GdbModifyCurve ----------------------------------
|
|
bool LuaInstallGdbModifyCurve( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GdbModifySurf -----------------------------------
|
|
bool LuaInstallGdbModifySurf( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GdbModifyVol -----------------------------------
|
|
bool LuaInstallGdbModifyVol( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GdbGet ------------------------------------------
|
|
bool LuaInstallGdbGet( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GdbGetCurve -------------------------------------
|
|
bool LuaInstallGdbGetCurve( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GdbGetSurf --------------------------------------
|
|
bool LuaInstallGdbGetSurf( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GdbGetVol ---------------------------------------
|
|
bool LuaInstallGdbGetVol( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GdbPartLayer ------------------------------------
|
|
bool LuaInstallGdbPartLayer( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GdbObjects --------------------------------------
|
|
bool LuaInstallGdbObjects( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GdbObjSelection ---------------------------------
|
|
bool LuaInstallGdbObjSelection( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GdbObjAttribs -----------------------------------
|
|
bool LuaInstallGdbObjAttribs( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GeoSnap -----------------------------------------
|
|
bool LuaInstallGeoSnap( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GeoTransform ------------------------------------
|
|
bool LuaInstallGeoTransform( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GeoDist -----------------------------------------
|
|
bool LuaInstallGeoDist( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GeoInters ---------------------------------------
|
|
bool LuaInstallGeoInters( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- Collision Detection -----------------------------
|
|
bool LuaInstallCDeObjSolid( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- MachMgr -----------------------------------------
|
|
bool LuaInstallMachMgr( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- MaxFiller ---------------------------------------
|
|
bool LuaInstallMaxFiller( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- Nesting -----------------------------------------
|
|
bool LuaInstallNesting( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- Scene -------------------------------------------
|
|
bool LuaInstallScene( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- Photo -------------------------------------------
|
|
bool LuaInstallPhoto( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- Picture -----------------------------------------
|
|
bool LuaInstallPicture( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- Image -------------------------------------------
|
|
bool LuaInstallImage( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- Exchange ----------------------------------------
|
|
bool LuaInstallExchange( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- BeamMgr -----------------------------------------
|
|
bool LuaInstallBeamMgr( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- Polynomial Roots --------------------------------
|
|
bool LuaInstallPolynomialRoots( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- Shortest Path -----------------------------------
|
|
bool LuaInstallShortestPath( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- Collision Avoidance Tool ------------------------
|
|
bool LuaInstallCAvTool( LuaMgr& luaMgr) ;
|
|
|