3dPrinting :

- aggiunto PrepareExport per creare le geometrie necessarie all'esportazione in 3dm.
This commit is contained in:
SaraP
2023-10-24 15:21:07 +02:00
parent c2163ebf3f
commit 973eba6379
4 changed files with 225 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
-- PrepareExport.lua by Egaltech s.r.l. 2023/10/19
-- Creo le geometrie da esportare con 3dm
-- Intestazioni
require( 'EgtBase')
_ENV = EgtProtectGlobal()
EgtEnableDebug( false)
-- Imposto direttorio libreria specializzata per Stampa 3d
EgtAddToPackagePath( PRINT.BASEDIR .. '\\LuaLibs\\?.lua')
-- Librerie
_G.package.loaded.RunPrepareExport = nil
local RPE = require( 'RunPrepareExport')
-- Calcolo
PRINT.EXPORTLAYER = RPE.Exec()