*
;
/* this driver uses centi-meters (cm) convention and
scales with factor 2.54 all coordinates upon output */
/* this driver needs the following filename-statements:
filename metafile 'c:\sas\m';
filename metaout 'c:\sas\m-f.for'; */
/* used in SAS 6.10 for Windows, runable in SAS 6.08
must be customized on other platforms */
proc gdevice cat=sashelp.devices nofs;
copy gxtslink from=sashelp.devices newname=cal1073;
modify cal1073
description="CalComp 1073 Meta Driver"
lrows=70 lcols=152
prows=152 pcols=70
aspect=0.0
paperfeed=0.0
xmax=106.30 cm ymax=80.9 cm
hsize=37.7 cm vsize=24.9 cm
xpixels=9999
ypixels =7609
rotate=LANDSCAPE
erase=N swap=Y autocopy=y autofeed=y
characters=n circlearc=n fill=n dash=n
piefill=n polygonfill=n symbol=n
maxcolors=8
fillinc=10
maxpoly=500
cback=white
colors=(black red green blue)
/* there should be the right path for file CGX.EXE
and files M and M-C.FOR */
process="c:\sas\cgx=10240c:\sas\m-c.for"
/* if you use convertprogram M activate the following */
* process="c:\sas\m=10240c:\sas\m.dat" ;
/* File CALCOMP.ZIP contains CGX.EXE and M.EXE */
/* 16 bit Appl. */
interactive=graph
;
quit;
* ;