home *** CD-ROM | disk | FTP | other *** search
- !----------------------------------------------------------------------------
- ! Three D Graphics, Budlong, 88-1-1
- ! Using vector capability of the Kyocera printers.
- ! File KYOCERA.3PL
- ! Can't print this on a Kyocera cause it sees the reset command and gives up.
- !----------------------------------------------------------------------------
- Kyocera F1010, F2010, F3010
- -------
- version =PlotConfig v0.3
- resolution =300
- min_x =0
- min_y =0
- max_x =2400
- max_y =3000
-
- init_paper =!R!RES;UNIT D;SPD2;MAP 0,0;
- ! !R! gets Kyocera's "Prescribe" engine started.
- ! RES resets all parameters.
- ! UNIT D sets printer to units of dots, not inches, cm, etc.
- ! SPD 2 sets line (Pen Dia.) to 2 dots wide, approx 0.15 mm.
- ! MAP 0,0; to control starting position. (Move Abs Pos'n)
- init_film =!R!RES;UNIT D;SPD2;MAP 0,0;
- ! No difference, paper or film.
- home =PU0,0
- pen_up =SCP;
- ! SCP = Save cursor position.
- ! Used for null instruction - not needed on a laser printer.
- pen_down =SCP;
- ! Used for null instruction - not needed on a laser printer.
- move =MAP%x:1:10%,%y:1:10%;
- draw =DAP%x:1:10%,%y:1:10%;
- ! DAP = Draw Absolute Position
-
- max_pens =1
- first_pen =1
- select_pen =SCP;
- ! Used for null instruction - not needed on a laser printer.
-
- max_line_types =7
- ! Use different line widths for line types.
- line_type_0 =SPD 2;
- ! Default line type, 2 dots wide
- line_type_1 =SPD 5;
- line_type_2 =SPD 8;
- line_type_3 =SPD 11;
- line_type_4 =SPD 14;
- line_type_5 =SPD 17;
- line_type_6 =SPD 20;
-
- terminate =RES;EXIT;
- ! RES (reset) to be nice to the next guy using the printer.
- ! EXIT to get out of Prescribe language.
-