home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Science / Science.zip / gmt_os2.zip / src / gmt_colors.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-05  |  854 b   |  24 lines

  1. /*--------------------------------------------------------------------
  2.  *    The GMT-system:    @(#)gmt_colors.h    2.5  05 Jul 1995
  3.  *
  4.  *    Copyright (c) 1991-1995 by P. Wessel and W. H. F. Smith
  5.  *    See README file for copying and redistribution conditions.
  6.  *--------------------------------------------------------------------*/
  7.  
  8. /* Here is the definition of the gmt_lut structure that is used in programs
  9.  * that deals with coloring of grids.
  10.  */
  11.  
  12. struct GMT_LUT {
  13.     double z_low, z_high;
  14.     int rgb_low[3], rgb_high[3];
  15.     int anot;
  16.     BOOLEAN skip;
  17. };
  18.  
  19. extern struct GMT_LUT *gmt_lut;
  20. extern int gmt_n_colors;
  21. extern BOOLEAN gmt_gray;        /* TRUE if only grayshades are used */
  22. extern BOOLEAN gmt_b_and_w;        /* TRUE if only black OR white is used */
  23. extern BOOLEAN gmt_continuous;        /* TRUE if colors change continuously within slice */
  24.