ea3099ae74
- aggiunto PointGrid3d (griglia hash per ricerca spaziale veloce di punti) - aggiunti Compacting e Sewing a SurfTriMesh - razionalizzazioni a GdbExecutor.
46 lines
1.4 KiB
C++
46 lines
1.4 KiB
C++
//----------------------------------------------------------------------------
|
|
// EgalTech 2014-2014
|
|
//----------------------------------------------------------------------------
|
|
// File : NgeConst.h Data : 12.04.14 Versione : 1.5d3
|
|
// Contenuto : Costanti per file Nge.
|
|
//
|
|
//
|
|
//
|
|
// Modifiche : 12.04.14 DS Creazione modulo.
|
|
//
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
//----------------------------------------------------------------------------
|
|
// Costanti per file NGE
|
|
//----------------------------------------------------------------------------
|
|
// versione
|
|
const int NGE_MAJOR_VER = 1 ;
|
|
const int NGE_MINOR_VER = 5 ;
|
|
const int NGE_PATCH_VER = 6 ;
|
|
// nome GDB
|
|
const std::string NGE_GEOMDB = "GeomDB" ;
|
|
// indici KeyWord
|
|
const int NGE_START = 0 ;
|
|
const int NGE_END = 1 ;
|
|
const int NGE_MAT_DEF = 2 ;
|
|
const int NGE_MAT_LIB = 3 ;
|
|
const int NGE_A = 4 ;
|
|
const int NGE_G = 5 ;
|
|
const int NGE_P = 6 ;
|
|
const int NGE_A_GRP = 7 ;
|
|
const int NGE_X_CPY = 8 ;
|
|
const int NGE_G_VEC = 9 ;
|
|
const int NGE_G_PNT = 10 ;
|
|
const int NGE_G_FRM = 11 ;
|
|
const int NGE_C_LIN = 12 ;
|
|
const int NGE_C_ARC = 13 ;
|
|
const int NGE_C_BEZ = 14 ;
|
|
const int NGE_C_CMP = 15 ;
|
|
const int NGE_S_TRM = 16 ;
|
|
const int NGE_LAST_ID = 16 ; // ultimo valore
|