f3e15b8c8d
- aggiunti file della libreria e progetto visual studio.
71 lines
3.0 KiB
C
71 lines
3.0 KiB
C
/*****************************************************************************/
|
|
/* */
|
|
/* Copyright (C) 1999-2023 M. Held */
|
|
/* */
|
|
/* This code is not in the public domain. All rights reserved! Please make */
|
|
/* sure to read the full copyright statement contained in "README.txt" or in */
|
|
/* the "main" file of this code, such as "main.cc". */
|
|
/* */
|
|
/*****************************************************************************/
|
|
/* */
|
|
/* Written by: Martin Held */
|
|
/* */
|
|
/* E-Mail: held@cs.sbg.ac.at */
|
|
/* Fax Mail: (+43 662) 8044-172 */
|
|
/* Voice Mail: (+43 662) 8044-6304 */
|
|
/* Snail Mail: Martin Held */
|
|
/* FB Informatik */
|
|
/* Universitaet Salzburg */
|
|
/* A-5020 Salzburg, Austria */
|
|
/* */
|
|
/*****************************************************************************/
|
|
|
|
#ifndef VRONI_DEFS_H
|
|
#define VRONI_DEFS_H
|
|
|
|
#define PROG_NAME "V R O N I"
|
|
#define PROG_VERSION "7.6"
|
|
#define PROG_YEAR "1999-2023"
|
|
|
|
/* */
|
|
/* get the definitions for "exterior applications" */
|
|
/* */
|
|
#include "ext_appl_defs.h"
|
|
|
|
/* */
|
|
/* colors for OpenGL drawing */
|
|
/* */
|
|
#define Brown 0
|
|
#define Green 1
|
|
#define Blue 2
|
|
#define White 3
|
|
#define Red 4
|
|
#define Cyan 5
|
|
#define Yellow 6
|
|
#define Orange 7
|
|
#define Magenta 8
|
|
#define Black 9
|
|
#define NumColors 10
|
|
|
|
|
|
#define NoColor Black
|
|
#define SupColor White
|
|
#define PntColor Green
|
|
#define SegColor Green
|
|
#define ArcColor Cyan
|
|
#define CirColor Yellow
|
|
#define AlertColor Red
|
|
#define CurrColor Blue
|
|
#define MICColor Yellow
|
|
#define VDColor Red
|
|
#define GridColor Brown
|
|
#define TreeColor Brown
|
|
#define VDCurrColor Magenta
|
|
#define DTCurrColor Orange
|
|
#define SiteCurrColor Blue
|
|
#define DTColor White
|
|
#define OffColor White
|
|
#define WMATColor Blue
|
|
|
|
#endif
|