home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
High Voltage Shareware
/
high1.zip
/
high1
/
DIR6
/
SMST21B1.ZIP
/
PSBGI.PS
< prev
next >
Wrap
Text File
|
1993-02-05
|
1KB
|
62 lines
%!PS-Adobe-2.0
%
% BGI Printer Driver Toolkit Postscript Header
%
% Copyright (c) 1990,1993 Ryle Design, PO Box 22, Mt. Pleasant MI 48804
%
% V1.1B 01.93 thl
%
% Internal variables:
%
/linewidth 2 def
%
% Procedures called by PSBGI driver:
%
/INIT % BGI init
{
18 36 translate % margins
0.1 0.1 scale % scale to decipoints
1.415 setmiterlimit % bevels < 90 deg
}
bind def
%
/POST % BGI post
{
showpage % show what we drew ...
}
bind def
%
/VECT % BGI line & vect (x1,y1) to (x2,y2)
{
newpath moveto lineto stroke
}
bind def
%
/LNWD % set line width
{
linewidth mul setlinewidth
}
bind def
%
/LNST % set line style
{
0 setdash
}
bind def
%
%
/PIXL % BGI set pixel function
{
newpath moveto
-1 -1 rmoveto
0 2 rlineto
1 0 rlineto
0 -2 rlineto
1 0 rlineto
0 2 rlineto stroke
}
bind def
%
% End of PSBGI header
%