root/OpenSceneGraph/trunk/src/osgPlugins/dxf/aci.h
@
13041
| Revision 13041, 0.7 kB (checked in by robert, 15 months ago) | |
|---|---|
|
|
| Line | |
|---|---|
| 1 | /* dxfReader for OpenSceneGraph Copyright (C) 2005 by GraphArchitecture ( grapharchitecture.com ) |
| 2 | * Programmed by Paul de Repentigny <pdr@grapharchitecture.com> |
| 3 | * |
| 4 | * OpenSceneGraph is (C) 2004 Robert Osfield |
| 5 | * |
| 6 | * This library is provided as-is, without support of any kind. |
| 7 | * |
| 8 | * Read DXF docs or OSG docs for any related questions. |
| 9 | * |
| 10 | * You may contact the author if you have suggestions/corrections/enhancements. |
| 11 | */ |
| 12 | |
| 13 | #ifndef DXF_ACI_COLOR |
| 14 | #define DXF_ACI_COLOR 1 |
| 15 | // lookup table for autocad color index |
| 16 | struct aci { |
| 17 | // some color positions |
| 18 | enum { |
| 19 | BLACK, |
| 20 | RED, |
| 21 | YELLOW, |
| 22 | GREEN, |
| 23 | CYAN, |
| 24 | BLUE, |
| 25 | MAGENTA, |
| 26 | WHITE, |
| 27 | USER_2, |
| 28 | USER_3, |
| 29 | BYLAYER = 256, |
| 30 | MIN = 1, |
| 31 | MAX = 255 |
| 32 | }; |
| 33 | static double table[256*3]; |
| 34 | }; |
| 35 | #endif |
Note: See TracBrowser
for help on using the browser.
