cbec90699f
- creato il progetto in Visual Studio per compilare come libreria statica - modifiche al codice originale per integrarlo nelle nostre librerie.
28 lines
1.2 KiB
C++
28 lines
1.2 KiB
C++
/*****************************************************************************/
|
|
/* */
|
|
/* F I S T : Fast, Industrial-Strength Triangulation */
|
|
/* */
|
|
/*****************************************************************************/
|
|
/* */
|
|
/* (C) Martin Held */
|
|
/* (C) Universitaet Salzburg, Salzburg, Austria */
|
|
/* */
|
|
/* This code is not in the public domain. All rights reserved! Please make */
|
|
/* sure to read the full copyright statement contained in api_functions.cpp. */
|
|
/* */
|
|
/*****************************************************************************/
|
|
|
|
#ifdef EXT_APPL_SITES
|
|
const eas_type eas_NIL = -1;
|
|
const eap_type eap_NIL = -1;
|
|
#else
|
|
#define eas_NIL -1
|
|
#endif
|
|
|
|
#ifdef EXT_APPL_TRI
|
|
const eat_type eat_NIL = -1;
|
|
#else
|
|
#define eat_NIL -1
|
|
#endif
|
|
|