home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / g / gs252src.zip / GS252 / GZLINE.H < prev    next >
C/C++ Source or Header  |  1991-12-28  |  2KB  |  44 lines

  1. /* Copyright (C) 1989 Aladdin Enterprises.  All rights reserved.
  2.    Distributed by Free Software Foundation, Inc.
  3.  
  4. This file is part of Ghostscript.
  5.  
  6. Ghostscript is distributed in the hope that it will be useful, but
  7. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  8. to anyone for the consequences of using it or for whether it serves any
  9. particular purpose or works at all, unless he says so in writing.  Refer
  10. to the Ghostscript General Public License for full details.
  11.  
  12. Everyone is granted permission to copy, modify and redistribute
  13. Ghostscript, but only under the conditions described in the Ghostscript
  14. General Public License.  A copy of this license is supposed to have been
  15. given to you along with Ghostscript so you can know your rights and
  16. responsibilities.  It should be in a file named COPYING.  Among other
  17. things, the copyright notice and this notice must be preserved on all
  18. copies.  */
  19.  
  20. /* gxline.h */
  21. /* Private line parameters for GhostScript */
  22. /* Requires gsstate.h */
  23.  
  24. /* Line parameter structures */
  25. typedef struct dash_params_s {
  26.     float *pattern;
  27.     uint pattern_size;
  28.     float offset;
  29.     /* The rest of the parameters are computed from the above */
  30.     int init_ink_on;        /* true if ink is initially on */
  31.     int init_index;            /* initial index in pattern */
  32.     float init_dist_left;
  33. } dash_params;
  34. typedef struct line_params_s {
  35.     float width;            /* one-half line width */
  36.     gs_line_cap cap;
  37.     gs_line_join join;
  38.     float miter_limit;
  39.     float miter_check;        /* computed from miter limit, */
  40.                     /* see gs_setmiterlimit and */
  41.                     /* gs_stroke */
  42.     dash_params dash;
  43. } line_params;
  44.