home *** CD-ROM | disk | FTP | other *** search
/ No Fragments Archive 12: Textmags & Docs / nf_archive_12.iso / MAGS / SOURCES / ATARI_SRC.ZIP / atari source / DSHJ2 / CNVRT.H < prev    next >
Encoding:
C/C++ Source or Header  |  2001-02-10  |  1.9 KB  |  69 lines

  1. #define        ALNUM    8    /* Atari Laser # of ranges    */
  2. #define        EPNUM    4    /* CG     EP308 # of ranges    */
  3.  
  4. /*
  5.     unit_type value from UNIT4
  6.     0 --    Inch.1/100 Inch                X & Y
  7.     1  --    Pica.Point    X,    Point.1/4 Point Y
  8.     2  --    Millimeter.1/10 Millimeter        X & Y
  9.     3  --    Cicero.Didot    X,    Didot.1/4 Didot Y
  10. */
  11.  
  12. /*
  13.     Counting Unit Qualifier tables
  14. */
  15. unsigned hlq[UNIT4]= { 100  , 12  , 10        , 12        };
  16. double     hrq[UNIT4]= { 12.96, 18.0, 5.102362205    , 19.28571429    };
  17.  
  18. unsigned vlq[UNIT4]= { 100  , 4  , 10        , 4        };
  19. double     vrq[UNIT4]= { 11.52, 4.0, 4.535433071    , 4.285714286    };
  20.  
  21. /*
  22.     Atari Laser Dimensions Tables
  23.  
  24.     pagetype (-PA4)    definitions    from ALNUM
  25.     0 --    A4    (8.25x11.75)    Portrait
  26.         46 Pc .8 Pt    X,    812 Pt .2 1/4Pt    Y
  27.     1 --    B5    (7.25x10.25)    Portrait
  28.         40 Pc .3 Pt    X,    699 Pt .1 1/4Pt    Y
  29.     2 --    Letter    (8.5x11)    Portrait
  30.         48 Pc        X,    763 Pt        Y
  31.     3 --    Legal    (8.5x14)    Portrait
  32.         48 Pc        X,    979 Pt        Y
  33.     4 --    A4    (8.25x11.75)    Landscape
  34.         67 Pc .8 Pt    X,    560 Pt .2 1/4Pt    Y
  35.     5 --    B5    (7.25x10.25)    Landscape
  36.         58 Pc .3 Pt    X,    483 Pt .3 1/4Pt    Y
  37.     6 --    Letter    (8.5x11)    Landscape
  38.         63 Pc .7 Pt    X,    576 Pt        Y
  39.     7 --    Legal    (8.5x14)    Landscape
  40.         81 Pc .7 Pt    X,    576 Pt        Y
  41. */
  42. unsigned pvxmax[ALNUM]=        /* LASER MAX X    */
  43. /*{ 10092, 8709, 10368, 10368 }; Old values */
  44.   { 10092, 8709, 10368, 10368, 14628, 12588, 13738, 17626 };
  45.  
  46. unsigned pvymax[ALNUM]=        /* LASER MAX Y    */
  47. /*{ 13002, 11190, 12096, 15552 }; Old values */
  48.   { 13003, 11189, 12211, 15667, 8971, 7741, 9216, 9216 };
  49.  
  50.  
  51. /*
  52.     CG EP308 Laser Dimensions Tables
  53.  
  54.     pagetype (-PA4)    definitions    from EPNUM
  55.     0 --    Letter    (8.5x11)    Portrait
  56.         48 Pc .6 Pt    X,    785 Pt        Y
  57.     1 --    Legal    (8.5x14)    Portrait
  58.         48 Pc .6 Pt    X,    999 Pt .3 1/4Pt    Y
  59.     2 --    Letter    (8.5x11)    Landscape
  60.         65 Pc .5 Pt    X,    582 Pt        Y
  61.     3 --    Legal    (8.5x14)    Landscape
  62.         70 Pc        X,    582 Pt        Y
  63. */
  64. unsigned epxmax[EPNUM]=        /* EP308 MAX X    */
  65. { 10476, 10476, 14130, 15120 };
  66.  
  67. unsigned epymax[EPNUM]=        /* EP308 MAX Y    */
  68. { 12560, 15996, 9312, 9312 };
  69.