|
Defines |
| #define | PIXELS_X 640 |
| #define | PIXELS_Y 480 |
| #define | MAX(a, b) ((a>b) ? a : b) |
| #define | ABS(a) ((a<0) ? -a : a) |
| #define | MAX_INTENSITY 255 |
| #define | sign(a) ((a<0) ? -1 : ((a == 0) ? 0 : 1)) |
| #define | plot(x, y, c) |
Functions |
| void | plD_dispatch_init_pbm (PLDispatchTable *pdt) |
| void | plD_init_pbm (PLStream *) |
| void | plD_line_pbm (PLStream *, short, short, short, short) |
| void | plD_polyline_pbm (PLStream *, short *, short *, PLINT) |
| void | plD_eop_pbm (PLStream *) |
| void | plD_bop_pbm (PLStream *) |
| void | plD_tidy_pbm (PLStream *) |
| void | plD_state_pbm (PLStream *, PLINT) |
| void | plD_esc_pbm (PLStream *, PLINT, void *) |
Variables |
| const char * | plD_DEVICE_INFO_pbm = "pbm:PDB (PPM) Driver:0:pbm:38:pbm" |
| static char * | cmap |