Very Simple Graphic Library
 Tutto Classi File Funzioni Variabili Pagine
vsgl_types.h
1 #ifndef VSGL_TYPES_H_INCLUDED
2 #define VSGL_TYPES_H_INCLUDED
3 
4 
5 #include "quickcg.h"
6 
7 using namespace QuickCG;
8 
9 typedef ColorRGB Colore;
10 #define LARGHEZZA_DISEGNO w
11 #define ALTEZZA_DISEGNO h
12 
13 #define BIANCO RGB_White
14 #define ROSSO RGB_Red
15 #define VERDE RGB_Green
16 #define CIANO RGB_Cyan
17 #define MAGENTA RGB_Magenta
18 #define GIALLO RGB_Yellow
19 #define GRIGIO RGB_Grey
20 #define MARRONE RGB_Maroon
21 #define VERDE_SCURO RGB_Darkgreen
22 #define BLU_MARINO RGB_Navy
23 #define VIOLA RGB_Purple
24 #define VERDE_OLIVA RGB_Olive
25 #define NERO RGB_Black
26 #define NESSUN_COLORE ColorRGB(-1,-1,-1)
27 
28 #endif // VSGL_TYPES_H_INCLUDED
Definition: quickcg.h:107