Database
grprog.asc
Associated article: Graphics Programming
Tags: Database
_GRAPHICS PROGRAMMING COLUMN_
by Michael Abrash
[LISTING ONE]
typedef struct _ModelColor {
unsigned char Red; /* 255 = max red, 0 = no red */
unsigned char Green; /* 255 = max green, 0 = no green */
unsigned char Blue; /* 255 = max blue, 0 = no blue */
} ModelColor;
[LISTING TWO]
/* Sets up the palette in ...


