bf3a3fa297
- aggiunta libreria vroni 7.6.
73 lines
3.2 KiB
C
73 lines
3.2 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
|
|
|
|
#include "mydefs.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 VroniBrown 0
|
|
#define VroniGreen 1
|
|
#define VroniBlue 2
|
|
#define VroniWhite 3
|
|
#define VroniRed 4
|
|
#define VroniCyan 5
|
|
#define VroniYellow 6
|
|
#define VroniOrange 7
|
|
#define VroniMagenta 8
|
|
#define VroniBlack 9
|
|
#define VroniNumColors 10
|
|
|
|
|
|
#define NoColor VroniBlack
|
|
#define SupColor VroniWhite
|
|
#define PntColor VroniGreen
|
|
#define SegColor VroniGreen
|
|
#define ArcColor VroniCyan
|
|
#define CirColor VroniYellow
|
|
#define AlertColor VroniRed
|
|
#define CurrColor VroniBlue
|
|
#define MICColor VroniYellow
|
|
#define VDColor VroniRed
|
|
#define GridColor VroniBrown
|
|
#define TreeColor VroniBrown
|
|
#define VDCurrColor VroniMagenta
|
|
#define DTCurrColor VroniOrange
|
|
#define SiteCurrColor VroniBlue
|
|
#define DTColor VroniWhite
|
|
#define OffColor VroniWhite
|
|
#define WMATColor VroniBlue
|
|
|
|
#endif
|