/* RCSid: $Id: macplot.h,v 1.3 2004/11/05 03:31:37 greg dead $ */ /* * Definitions for MacIntosh plotting routines */ #ifndef _RAD_MACPLOT_H_ #define _RAD_MACPLOT_H_ #undef TRUE #undef FALSE #include #ifdef __cplusplus extern "C" { #endif #define mapx(x) CONV(x, dxsize) #define mapy(y) (dysize - 1 - CONV(y, dysize)) extern int pati[]; extern Pattern macpat[]; /* fill patterns */ extern dxsize, dysize; /* plot dimensions */ #ifdef __cplusplus } #endif #endif /* _RAD_MACPLOT_H_ */