23 lines
315 B
C
23 lines
315 B
C
/* @(#)chain.h 1.1 94/10/31 SMI */
|
|
#ifndef CHAIN
|
|
#define CHAIN
|
|
|
|
#define CHAINSIZE 14
|
|
|
|
struct pr_triangle
|
|
{
|
|
struct pr_pos A, B, C;
|
|
};
|
|
|
|
struct pr_band
|
|
{
|
|
int y0, y1; /* y coord of top and bottom of band */
|
|
};
|
|
struct pr_curve
|
|
{
|
|
char x, y;
|
|
short bits;
|
|
};
|
|
|
|
#endif CHAIN
|