bf3a3fa297
- aggiunta libreria vroni 7.6.
41 lines
2.3 KiB
C
41 lines
2.3 KiB
C
/*****************************************************************************/
|
|
/* */
|
|
/* Copyright (C) 2003--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-611 */
|
|
/* Voice Mail: (+43 662) 8044-6304 */
|
|
/* Snail Mail: Martin Held */
|
|
/* FB Informatik */
|
|
/* Universitaet Salzburg */
|
|
/* A-5020 Salzburg, Austria */
|
|
/* */
|
|
/*****************************************************************************/
|
|
|
|
#ifndef VRONI_IO_DXF_H
|
|
#define VRONI_IO_DXF_H
|
|
|
|
/* */
|
|
/* I'm not sure whether those are indeed the colors used in DXF files. */
|
|
/* Unfortunately, I do not seem to be able to get my hands on a decent */
|
|
/* specification of DXF... */
|
|
/* */
|
|
#define DXF_NO_COLOR -1
|
|
#define DXF_RED 1
|
|
#define DXF_YELLOW 2
|
|
#define DXF_GREEN 2
|
|
#define DXF_CYAN 4
|
|
#define DXF_BLUE 5
|
|
#define DXF_MAGENTA 6
|
|
#define DXF_WHITE 7
|
|
|
|
#endif
|