fb9f94c76e
- aggiunta gestione livello di debug tramite Set/GetEGkDebugLev - introduzione della costante SQ_INFINITO = INFINITO * INFINITO - corretta triangolazione per oggetti molto grandi (si usava INFINITO invece di SQ_INFINITO) - corretta scalatura di curve composite (quando si espande si aggiusta la continuità tra le curve componenti).
24 lines
769 B
C++
24 lines
769 B
C++
//----------------------------------------------------------------------------
|
|
// EgalTech 2013-2020
|
|
//----------------------------------------------------------------------------
|
|
// File : DllMain.h Data : 19.09.20 Versione : 2.2i2
|
|
// Contenuto : Prototipi funzioni per uso locale della DLL.
|
|
//
|
|
//
|
|
//
|
|
// Modifiche : 18.12.13 DS Creazione modulo.
|
|
//
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include "/EgtDev/Include/EgtILogger.h"
|
|
#include <string>
|
|
|
|
//-----------------------------------------------------------------------------
|
|
int GetEGkDebugLev( void) ;
|
|
ILogger* GetEGkLogger( void) ;
|
|
const std::string& GetEGkKey( void) ;
|
|
int ProcessEvents( int nProg, int nPause) ;
|