home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a099 / 1.ddi / DRIVERS / KYOCERA.3PL < prev    next >
Encoding:
Text File  |  1988-07-25  |  1.8 KB  |  54 lines

  1. !----------------------------------------------------------------------------
  2. !  Three D Graphics, Budlong, 88-1-1
  3. !  Using vector capability of the Kyocera printers.
  4. !  File KYOCERA.3PL
  5. !  Can't print this on a Kyocera cause it sees the reset command and gives up.
  6. !----------------------------------------------------------------------------
  7. Kyocera F1010, F2010, F3010
  8. -------
  9. version          =PlotConfig v0.3
  10. resolution       =300
  11. min_x            =0
  12. min_y            =0
  13. max_x            =2400
  14. max_y            =3000
  15.  
  16. init_paper       =!R!RES;UNIT D;SPD2;MAP 0,0;
  17. ! !R! gets Kyocera's "Prescribe" engine started.
  18. ! RES resets all parameters.
  19. ! UNIT D sets printer to units of dots, not inches, cm, etc.
  20. ! SPD 2 sets line (Pen Dia.) to 2 dots wide, approx 0.15 mm.
  21. ! MAP 0,0; to control starting position. (Move Abs Pos'n)
  22. init_film        =!R!RES;UNIT D;SPD2;MAP 0,0;
  23. ! No difference, paper or film.
  24. home             =PU0,0
  25. pen_up           =SCP;
  26. ! SCP = Save cursor position. 
  27. ! Used for null instruction - not needed on a laser printer.
  28. pen_down         =SCP;
  29. ! Used for null instruction - not needed on a laser printer.
  30. move             =MAP%x:1:10%,%y:1:10%;
  31. draw             =DAP%x:1:10%,%y:1:10%;
  32. ! DAP = Draw Absolute Position
  33.  
  34. max_pens         =1
  35. first_pen        =1
  36. select_pen       =SCP;
  37. ! Used for null instruction - not needed on a laser printer.
  38.  
  39. max_line_types   =7
  40. ! Use different line widths for line types.
  41. line_type_0      =SPD 2;
  42. ! Default line type, 2 dots wide
  43. line_type_1      =SPD 5;
  44. line_type_2      =SPD 8;
  45. line_type_3      =SPD 11;
  46. line_type_4      =SPD 14;
  47. line_type_5      =SPD 17;
  48. line_type_6      =SPD 20;
  49.  
  50. terminate        =RES;EXIT;
  51. ! RES (reset) to be nice to the next guy using the printer.
  52. ! EXIT to get out of Prescribe language.
  53.  
  54.